Discussion:
JDBC lint
Andrew Gaul
2013-12-03 04:19:30 UTC
Permalink
JDBC lint helps Java programmers write correct and efficient code when
using the JDBC API. This includes resource management, e.g., missing
Connection.close, incorrect use of JDBC, e.g., Statement.addBatch
without Statement.executeBatch, and potential optimizations, e.g.,
unread ResultSet columns. JDBC lint wraps DataSource and Connection and
via dynamic proxy classes and thus has compatibility with all
applications using JDBC. I tested against H2 and MySQL and hope users
find this helpful:

https://github.com/maginatics/jdbclint

I appreciate any feedback!
--
Andrew Gaul
http://maginatics.com/
--
MySQL Java Mailing List
For list archives: http://lists.mysql.com/java
To unsubscribe: http://lists.mysql.com/java
Loading...