brunorozendo / log4jdbc-log4j2

Automatically exported from code.google.com/p/log4jdbc-log4j2
48 stars 39 forks source link

Unread values not filled on a call to ResultSet.close(), if the previous call to next() did not return false #7

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
When the printing of the ResultSets is enabled, as well as the filling of 
unread values: if close() is called on the ResultSet, but the previous call to 
next() did not return false (not the end of the result set), the ResultSet is 
printed, but the unread values of the last line are not filled. 

This is because this implementation takes care of printing a ResultSet on a 
call to close(), even if it was not the end of the result set (previous call to 
next() returned true). log4jdbc-remix only triggers the printing on a call to 
next()

Original issue reported on code.google.com by frederic...@gmail.com on 20 Jun 2013 at 10:40

GoogleCodeExporter commented 8 years ago
Fixed in revision r172 and release 1.15-SNAPSHOT.

Original comment by frederic...@gmail.com on 20 Jun 2013 at 10:42