What is the difference between ExecuteUpdate and
ExecuteQuery?
Answer / p.l.n.kumar
ExecuteUpdate is used to execute Insert,Update and
Delete... statements.it's return type is 'int' .
ExecuteQuery is used to execute Select.... statements.It's
return type is 'Resultset' object.
Is This Answer Correct ? | 45 Yes | 8 No |
What is database deadlock ?
why we don't use the type 2 driver for connect to the database in jdbc?
write a query to select name from one table which has id,name and salary from another table which has id, sal where the salary is the second maximum
3 Answers Bosch, HireCraft, Infosys,
What is the use of getGeneratedKeys() method in Statement?
Is java a database?
What are the Isolation level in JDBC transaction?
How do you determine the sensitivity of the ResultSet object?
What is jdbc thin client?
what happen if we set JDBC string to NULL?
How to use JDBC to connect Microsoft Access?
What is PreparedStatement?
How can I retrieve a String or other object type without creating a new object each time?