On 09/05/07, Graham Triggs <[EMAIL PROTECTED]> wrote:
> Also, there appears to be a bug in the TableRowIterator, although this
> probably isn't affecting you. In close():
>
> results.close();
> if (results != null)
>     results.close();
>
> should be:
>
> if (results != null)
>     results.close();
> results = null;

Well spotted! It might be worth putting some debug logging in the
catch statements in close() as well.

Jim

-- 
there's no such thing as 2

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
DSpace-tech mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/dspace-tech

Reply via email to