What is static Synchronized method in JDBC API? Give an
example?
Answers were Sorted based on User's Feedback
Answer / indrani
getConnection is the synchronised and static method
| Is This Answer Correct ? | 36 Yes | 3 No |
Answer / venkat
getConnection is not synchronized method,but it is static
registerDriver(java.sql.driver);
deregisterDriver(java.sql.driver);
the above two methods are synchronized methods
if any one have doubet
go to command prompt type following command
javap java.sql.DriverManager
| Is This Answer Correct ? | 1 Yes | 1 No |
How to update a resultset programmatically?
What is a lock in jdbc?
what is rowset?
What is JDBC API and when do we use it?
How many packages are available in jdbc api?
Name the method, which is used to prepare a callablestatement.
What is the purpose of the jdbc resultset interface?
Give an example of code used for setting up connection with a driver.
How can I manage special characters when I execute an insert query?
What is a PreparedStatement?
The new features of the JDBC 2.0 API, will be supported for JDBC-ODBC Bridge?
How to move the cursor in scrollable resultset ?