How do find debugging problems related to JDBC API?
Answer Posted / aditi
A good way to find out what JDBC calls are doing is to
enable JDBC tracing. The JDBC trace contains a detailed
listing of the activity occurring in the system that is
related to JDBC operations.
If you use the DriverManager facility to establish your
database connection, you use the DriverManager.setLogWriter
method to enable tracing of JDBC operations. If you use a
DataSource object to get a connection, you use the
DataSource.setLogWriter method to enable tracing. (For
pooled connections, you use the
ConnectionPoolDataSource.setLogWriter method, and for
connections that can participate in distributed
transactions, you use the XADataSource.setLogWriter method.)
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are the differences between setmaxrows(int) and setfetchsize(int)?
How can I determine the isolation levels supported by my DBMS?
What is a rollback in jdbc?
What is the use of getGeneratedKeys() method in Statement?
How can we store and retrieve images from the database?
Why is odbc needed?
What do you mean by jdbc batch processing and what are the advantages of using jdbc batch processing?
Explain in detail about JDBC and its general features?
What is meant by jdbc and odbc?
Where can I find info, frameworks and example source for writing a JDBC driver?
Is it possible to connect to multiple databases? Using single statement can we update or extract data from two or three or many databases?
What are the ddl statements?
What are types of resultset?
What is jdbc connection?
Why prepared statements are faster?