What is execute(), executeUpdate() and executeQuery()
methods?
Answer Posted / ratheesh.a
executeQuery(): This is a method/function used in jdbc
programs. this method will return a 'Resulset' object.
Through this method we can access the result of the query
Usually the Select query is used here..
executeUpadte(): This method is mainly used for updating
queries.. such as 'insert,update,delete' etc... returns an
integer value which shows how many rows are updated...
execute() :What ever the sql queries we are giving in the
other 2 methods can also be include here
This will return a boolean value if it returns 'true' means
query executed successfuly else not..
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
Which type of driver is unique in jdbc?
What is jdbc url for mysql?
What is odbc and jdbc drivers?
What are collection pools?
What are the types of statements in jdbc?
What does setautocommit do?
Does the JDBC-ODBC Bridge work with Microsoft J++?
What is jdbc driver?
How do I retrieve a whole row of data at once, instead of calling an individual ResultSet.getXXX method for each column?
Can we return resultset in java?
What is jdbc thin client?
What is jdbc odbc bridge in java?
What is drivermanager in java?
Describe how the jdbc application works.
What are the 4 types of jdbc drivers?