Lines Matching refs:columnName

301      * @param columnName a <code>String</code> object giving the name of the column
309 public void addRowSet(RowSet rowset, String columnName) throws SQLException {
311 ((CachedRowSetImpl)rowset).setMatchColumn(columnName);
367 * in <i>columnName</i> is used to set the match column for the first
369 * object in <i>columnName</i> is used to set the match column for the second
378 * @param columnName an array of <code>String</code> objects designating the columns
383 * in <i>columnName</i>, an empty <code>JdbcRowSet</code> is added to the
389 String[] columnName) throws SQLException {
392 if(rowset.length != columnName.length) {
397 ((CachedRowSetImpl)rowset[i]).setMatchColumn(columnName[i]);
886 // append them with their tablenames i.e. tableName.columnName
1299 * @param columnName a <code>String</code> object giving the SQL name of
1307 public String getString(String columnName) throws SQLException {
1308 return crsInternal.getString(columnName);
1315 * @param columnName a <code>String</code> object giving the SQL name of
1323 public boolean getBoolean(String columnName) throws SQLException {
1324 return crsInternal.getBoolean(columnName);
1331 * @param columnName a <code>String</code> object giving the SQL name of
1339 public byte getByte(String columnName) throws SQLException {
1340 return crsInternal.getByte(columnName);
1347 * @param columnName a <code>String</code> object giving the SQL name of
1355 public short getShort(String columnName) throws SQLException {
1356 return crsInternal.getShort(columnName);
1363 * @param columnName a <code>String</code> object giving the SQL name of
1371 public int getInt(String columnName) throws SQLException {
1372 return crsInternal.getInt(columnName);
1379 * @param columnName a <code>String</code> object giving the SQL name of
1387 public long getLong(String columnName) throws SQLException {
1388 return crsInternal.getLong(columnName);
1395 * @param columnName a <code>String</code> object giving the SQL name of
1403 public float getFloat(String columnName) throws SQLException {
1404 return crsInternal.getFloat(columnName);
1411 * @param columnName a <code>String</code> object giving the SQL name of
1419 public double getDouble(String columnName) throws SQLException {
1420 return crsInternal.getDouble(columnName);
1427 * @param columnName a <code>String</code> object giving the SQL name of
1435 * @deprecated use the method <code>getBigDecimal(String columnName)</code>
1438 public BigDecimal getBigDecimal(String columnName, int scale) throws SQLException {
1439 return crsInternal.getBigDecimal(columnName);
1447 * @param columnName a <code>String</code> object giving the SQL name of
1455 public byte[] getBytes(String columnName) throws SQLException {
1456 return crsInternal.getBytes(columnName);
1463 * @param columnName a <code>String</code> object giving the SQL name of
1471 public java.sql.Date getDate(String columnName) throws SQLException {
1472 return crsInternal.getDate(columnName);
1479 * @param columnName a <code>String</code> object giving the SQL name of
1487 public java.sql.Time getTime(String columnName) throws SQLException {
1488 return crsInternal.getTime(columnName);
1495 * @param columnName a <code>String</code> object giving the SQL name of
1503 public java.sql.Timestamp getTimestamp(String columnName) throws SQLException {
1504 return crsInternal.getTimestamp(columnName);
1520 * @param columnName a <code>String</code> object giving the SQL name of
1527 public java.io.InputStream getAsciiStream(String columnName) throws SQLException {
1528 return crsInternal.getAsciiStream(columnName);
1544 * @param columnName a <code>String</code> object giving the SQL name of
1554 public java.io.InputStream getUnicodeStream(String columnName) throws SQLException {
1555 return crsInternal.getUnicodeStream(columnName);
1569 * @param columnName a <code>String</code> object giving the SQL name of
1578 public java.io.InputStream getBinaryStream(String columnName) throws SQLException {
1579 return crsInternal.getBinaryStream(columnName);
1755 * @param columnName a <code>String</code> object that must match the
1765 public Object getObject(String columnName) throws SQLException {
1766 return crsInternal.getObject(columnName);
1776 * @param columnName a <code>String</code> object that must match the
1786 public Object getObject(String columnName,
1789 return crsInternal.getObject(columnName, map);
1821 * @param columnName a <code>String</code> object giving the SQL name of
1829 public java.io.Reader getCharacterStream(String columnName) throws SQLException {
1830 return crsInternal.getCharacterStream(columnName);
1855 * @param columnName a <code>String</code> object that must match the
1862 public BigDecimal getBigDecimal(String columnName) throws SQLException {
1863 return crsInternal.getBigDecimal(columnName);
2150 * Returns the index of the column whose name is <i>columnName</i>.
2152 * @param columnName a <code>String</code> object giving the name of the
2159 public int findColumn(String columnName) throws SQLException {
2160 return crsInternal.findColumn(columnName);
2763 // columnName updates
2778 * @param columnName a <code>String</code> object that must match the
2785 public void updateNull(String columnName) throws SQLException {
2786 crsInternal.updateNull(columnName);
2803 * @param columnName a <code>String</code> object that must match the
2811 public void updateBoolean(String columnName, boolean x) throws SQLException {
2812 crsInternal.updateBoolean(columnName, x);
2829 * @param columnName a <code>String</code> object that must match the
2837 public void updateByte(String columnName, byte x) throws SQLException {
2838 crsInternal.updateByte(columnName, x);
2855 * @param columnName a <code>String</code> object that must match the
2863 public void updateShort(String columnName, short x) throws SQLException {
2864 crsInternal.updateShort(columnName, x);
2881 * @param columnName a <code>String</code> object that must match the
2889 public void updateInt(String columnName, int x) throws SQLException {
2890 crsInternal.updateInt(columnName, x);
2907 * @param columnName a <code>String</code> object that must match the
2915 public void updateLong(String columnName, long x) throws SQLException {
2916 crsInternal.updateLong(columnName, x);
2933 * @param columnName a <code>String</code> object that must match the
2941 public void updateFloat(String columnName, float x) throws SQLException {
2942 crsInternal.updateFloat(columnName, x);
2959 * @param columnName a <code>String</code> object that must match the
2967 public void updateDouble(String columnName, double x) throws SQLException {
2968 crsInternal.updateDouble(columnName, x);
2985 * @param columnName a <code>String</code> object that must match the
2993 public void updateBigDecimal(String columnName, BigDecimal x) throws SQLException {
2994 crsInternal.updateBigDecimal(columnName, x);
3011 * @param columnName a <code>String</code> object that must match the
3019 public void updateString(String columnName, String x) throws SQLException {
3020 crsInternal.updateString(columnName, x);
3037 * @param columnName a <code>String</code> object that must match the
3045 public void updateBytes(String columnName, byte x[]) throws SQLException {
3046 crsInternal.updateBytes(columnName, x);
3063 * @param columnName a <code>String</code> object that must match the
3073 public void updateDate(String columnName, java.sql.Date x) throws SQLException {
3074 crsInternal.updateDate(columnName, x);
3091 * @param columnName a <code>String</code> object that must match the
3101 public void updateTime(String columnName, java.sql.Time x) throws SQLException {
3102 crsInternal.updateTime(columnName, x);
3119 * @param columnName a <code>String</code> object that must match the
3132 public void updateTimestamp(String columnName, java.sql.Timestamp x) throws SQLException {
3133 crsInternal.updateTimestamp(columnName, x);
3153 * @param columnName a <code>String</code> object that must match the
3159 public void updateAsciiStream(String columnName, java.io.InputStream x, int length) throws SQLException {
3160 crsInternal.updateAsciiStream(columnName, x, length);
3177 * @param columnName a <code>String</code> object that must match the
3189 public void updateBinaryStream(String columnName, java.io.InputStream x, int length) throws SQLException {
3190 crsInternal.updateBinaryStream(columnName, x, length);
3207 * @param columnName a <code>String</code> object that must match the
3220 public void updateCharacterStream(String columnName, java.io.Reader x, int length) throws SQLException {
3221 crsInternal.updateCharacterStream(columnName, x, length);
3241 * @param columnName a <code>String</code> object that must match the
3254 public void updateObject(String columnName, Object x, int scale) throws SQLException {
3255 crsInternal.updateObject(columnName, x, scale);
3272 * @param columnName a <code>String</code> object that must match the
3280 public void updateObject(String columnName, Object x) throws SQLException {
3281 crsInternal.updateObject(columnName, x);
3508 * @param columnName a <code>String</code> object that must match the
3516 public Ref getRef(String columnName) throws SQLException {
3517 return crsInternal.getRef(columnName);
3525 * @param columnName a <code>String</code> object that must match the
3534 public Blob getBlob(String columnName) throws SQLException {
3535 return crsInternal.getBlob(columnName);
3543 * @param columnName a <code>String</code> object that must match the
3552 public Clob getClob(String columnName) throws SQLException {
3553 return crsInternal.getClob(columnName);
3561 * @param columnName a <code>String</code> object that must match the
3570 public Array getArray(String columnName) throws SQLException {
3571 return crsInternal.getArray(columnName);
3603 * @param columnName a <code>String</code> object that must match the
3615 public java.sql.Date getDate(String columnName, Calendar cal) throws SQLException {
3616 return crsInternal.getDate(columnName, cal);
3648 * @param columnName a <code>String</code> object that must match the
3660 public java.sql.Time getTime(String columnName, Calendar cal) throws SQLException {
3661 return crsInternal.getTime(columnName, cal);
3694 * @param columnName a <code>String</code> object that must match the
3706 public java.sql.Timestamp getTimestamp(String columnName, Calendar cal) throws SQLException {
3707 return crsInternal.getTimestamp(columnName, cal);
3829 * @param columnName a <code>String</code> object giving the name of the column
3839 public void updateRef(String columnName, java.sql.Ref ref) throws SQLException {
3840 crsInternal.updateRef(columnName, ref);
3885 * @param columnName a <code>String</code> object giving the name of the column
3895 public void updateClob(String columnName, Clob c) throws SQLException {
3896 crsInternal.updateClob(columnName, c);
3941 * @param columnName a <code>String</code> object giving the name of the column
3951 public void updateBlob(String columnName, Blob b) throws SQLException {
3952 crsInternal.updateBlob(columnName, b);
3997 * @param columnName a <code>String</code> object giving the name of the column
4007 public void updateArray(String columnName, Array a) throws SQLException {
4008 crsInternal.updateArray(columnName, a);
4070 public java.net.URL getURL(String columnName) throws SQLException {
4071 return crsInternal.getURL(columnName);