ArrayHandler should return an empty array when handle has no rows Fixes DBUTILS-110.
Order of columns not retained in BasicRowProcessor with HashMap Fixes DBUTILS-114.?
BeanProcessor not returning nanoseconds Fixes DBUTILS-118.?
Add support for conversion of ResultSet strings to enums in the BeanProcessor Fixes DBUTILS-113.?
In BeanProcessor#isCompatibleType, can Integer.class.isInstance(value) be replaced by value instanceof Integer (etc)? ? ? ? ?Simplified code by using instanceof. Fixes DBUTILS-85.
DBUtils can't build using jdk 1.7 - Driverproxy needs to implement getParentLogger() ? ? ? ?Add dynamic invocation. Fixes DBUTILS-106.?
Create functionality to return auto-generated keys in batches of SQL inserts Fixes DBUTILS-108.?
Patch QueryLoader to also load from XML properties files Fixes DBUTILS-107.
Updated the use of getColumnName to try getColumnLabel first Fixes DBUTILS-100.
Add missing JavaDoc to QueryRunner#insert Fixes DBUTILS-98.
Add an Abstract ResultSetHandler implementation in order to reduce redundant 'resultSet' variable invocation Fixes DBUTILS-97.
DbUtils#loadDriver(ClassLoader,String) makes DriverManager throwing "No suitable driver found for jdbc" ? ? ? ?if ClassLoader is not the System's one Fixes DBUTILS-96.
Added insert methods to QueryRunner and AsyncQueryRunner that return the generated key. Fixes DBUTILS-87.