262263264265266267268269270271272
throws SQLException, RdbmsException { flush(); String qry = buildContextQuery(); if (qry == null) { return new EmptyRdbmsResourceCursor(); } PreparedStatement stmt = conn.prepareStatement(qry); try { return new RdbmsResourceCursor(vf, stmt); }