717273747576777879
{ DbTransaction xa = getConnectionImpl().getTransaction(); queryContext.setNonLocking(); SelectCursor result = query.executeCursor(queryContext, xa); return new CursorResultSetImpl(this, queryContext, result); }
848586878889909192
309310311312313314315316317318319320321322323324325326327
@Override public void close() throws SQLException { SelectCursor cursor = _cursor; _cursor = null; QueryContext cxt = _cxt; _cxt = null; try { if (cursor != null) cursor.close(); } catch (Exception e) { log.log(Level.FINER, e.toString(), e); } try {