266267268269270271272273274275276
if (qry == null) { return new EmptyRdbmsResourceCursor(); } PreparedStatement stmt = conn.prepareStatement(qry); try { return new RdbmsResourceCursor(vf, stmt); } catch (SQLException e) { stmt.close(); throw e; }