Skip to content
Advertisement

How to enable logging for SQL statements when using JDBC

I am trying to enable logs using my JDBC program by connecting to Oracle database in eclipse IDE.

I have gone through this SO post JDBC logging to file then I have created below java program and running it from my eclipse IDE, but I was not able to see any logs generated by the JDBC driver classes.

and I have below content in my OracleLog.properties file:

But when I run my program by placing ojdbc6-11.2.0.3.jar in classpath then I am getting exception as:

If I have ojdbc6_g.jar in classpath then also I am getting same exception.

Please let me know how can I enable logging for my JDBC program? basically I am expecting to see the logs generated by the internal JDBC code.

Update: Now I placed ojdbc6dms.jar file in classpath, my program is giving below exception:

Advertisement

Answer

If you are using Spring framework, then the datasource-proxy framework is very convenient. You can basically wrap around any DataSource and just add the logging behavior.

enter image description here

If you’re using Java EE, then P6spy is a good alternative:

enter image description here

Behind the scenes, p6spy provides the statement interceptor at the Driver level, which is much more convenient for Java EE applications because the DataSource is provided by the application server.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement