Lines Matching refs:rs

68     private ResultSet rs;
140 rs = null;
263 rs = null;
338 rs = null;
424 // The passed rs handle will be a wrapper around for
430 rs = res;
458 resMD = rs.getMetaData();
515 // If all the three i.e. conn, ps & rs are
519 if (conn == null && ps == null && rs == null ) {
582 rs = ps.executeQuery();
824 boolean b = rs.next();
845 if (rs != null)
846 rs.close();
870 return rs.wasNull();
892 return rs.getString(columnIndex);
910 return rs.getBoolean(columnIndex);
928 return rs.getByte(columnIndex);
946 return rs.getShort(columnIndex);
964 return rs.getInt(columnIndex);
982 return rs.getLong(columnIndex);
1000 return rs.getFloat(columnIndex);
1018 return rs.getDouble(columnIndex);
1038 return rs.getBigDecimal(columnIndex, scale);
1057 return rs.getBytes(columnIndex);
1075 return rs.getDate(columnIndex);
1093 return rs.getTime(columnIndex);
1111 return rs.getTimestamp(columnIndex);
1142 return rs.getAsciiStream(columnIndex);
1176 return rs.getUnicodeStream(columnIndex);
1205 return rs.getBinaryStream(columnIndex);
1540 return rs.getWarnings();
1556 rs.clearWarnings();
1587 return rs.getCursorName();
1617 return rs.getMetaData();
1650 return rs.getObject(columnIndex);
1700 return rs.findColumn(columnName);
1723 return rs.getCharacterStream(columnIndex);
1758 return rs.getBigDecimal(columnIndex);
1796 return rs.isBeforeFirst();
1813 return rs.isAfterLast();
1829 return rs.isFirst();
1850 return rs.isLast();
1866 rs.beforeFirst();
1882 rs.afterLast();
1900 boolean b = rs.first();
1920 boolean b = rs.last();
1937 return rs.getRow();
1975 boolean b = rs.absolute(row);
2005 boolean b = rs.relative(rows);
2028 boolean b = rs.previous();
2051 rs.setFetchDirection(direction);
2070 return rs.getFetchDirection();
2093 rs.setFetchSize(rows);
2115 if(rs == null) {
2118 int rstype = rs.getType();
2142 return rs.getConcurrency();
2163 return rs.rowUpdated();
2182 return rs.rowInserted();
2201 return rs.rowDeleted();
2224 rs.updateNull(columnIndex);
2248 rs.updateBoolean(columnIndex, x);
2273 rs.updateByte(columnIndex, x);
2297 rs.updateShort(columnIndex, x);
2320 rs.updateInt(columnIndex, x);
2344 rs.updateLong(columnIndex, x);
2368 rs.updateFloat(columnIndex, x);
2392 rs.updateDouble(columnIndex, x);
2417 rs.updateBigDecimal(columnIndex, x);
2441 rs.updateString(columnIndex, x);
2465 rs.updateBytes(columnIndex, x);
2489 rs.updateDate(columnIndex, x);
2514 rs.updateTime(columnIndex, x);
2539 rs.updateTimestamp(columnIndex, x);
2564 rs.updateAsciiStream(columnIndex, x, length);
2589 rs.updateBinaryStream(columnIndex, x, length);
2614 rs.updateCharacterStream(columnIndex, x, length);
2642 rs.updateObject(columnIndex, x, scale);
2666 rs.updateObject(columnIndex, x);
3009 rs.insertRow();
3029 rs.updateRow();
3052 rs.deleteRow();
3086 rs.refreshRow();
3108 rs.cancelRowUpdates();
3140 rs.moveToInsertRow();
3157 rs.moveToCurrentRow();
3174 if(rs != null)
3176 return rs.getStatement();
3203 return rs.getObject(i, map);
3219 return rs.getRef(i);
3237 return rs.getBlob(i);
3254 return rs.getClob(i);
3271 return rs.getArray(i);
3375 return rs.getDate(columnIndex, cal);
3420 return rs.getTime(columnIndex, cal);
3465 return rs.getTimestamp(columnIndex, cal);
3517 rs.updateRef(columnIndex, ref);
3572 rs.updateClob(columnIndex, c);
3627 rs.updateBlob(columnIndex, b);
3681 rs.updateArray(columnIndex, a);
3715 return rs.getURL(columnIndex);
4039 * <code>rs</code> to <code>null</code> after saving its value to another
4042 * (The field <code>rs</code> is this <code>JdbcRowSet</code> object's
4055 ResultSet oldVal = rs;
4056 rs = null;
4057 // propertyChangeSupport.firePropertyChange("ResultSet",oldVal,rs);
4105 * <code>rs</code> to <code>null</code> after saving its value to another object.
4106 * (The field <code>rs</code> is this <code>JdbcRowSet</code> object's
4118 ResultSet oldVal = rs;
4119 rs = null;
4120 // propertyChangeSupport.firePropertyChange("ResultSet", oldVal,rs);
4140 if(rs == null) {
4145 setType(rs.getType());
4146 setConcurrency(rs.getConcurrency());
4153 if(rs.getType() == TYPE_FORWARD_ONLY ||
4154 rs.getConcurrency() == CONCUR_READ_ONLY) {
4229 return rs;
4243 rs = resultSet;
4260 * <code>ps</code> and <code>rs</code> to <code>null</code>.
4262 * the field <code>rs</code> is its <code>ResultSet</code> object.)
4283 rs = null;
4304 * <code>ps</code>, <code>rs</code>, and <code>conn</code> to <code>null</code>.
4306 * the field <code>rs</code> is its <code>ResultSet</code> object, and
4336 rs = null;
4358 * <code>ps</code>, <code>rs</code>, and <code>conn</code> to <code>null</code>.
4360 * the field <code>rs</code> is its <code>ResultSet</code> object, and
4401 rs = null;
4425 * <code>ps</code>, <code>rs</code>, and <code>conn</code> to <code>null</code>.
4427 * <code>rs</code> is its <code>ResultSet</code> object, and
4445 rs = null;
4469 * <code>ps</code>, <code>rs</code>, and <code>conn</code> to <code>null</code>.
4471 * <code>rs</code> is its <code>ResultSet</code> object, and
4488 rs = null;