Lines Matching refs:columnName

1218      * @param columnName the SQL name of the column
1225 public String getString(String columnName) throws SQLException {
1226 return getString(findColumn(columnName));
1234 * @param columnName the SQL name of the column
1241 public boolean getBoolean(String columnName) throws SQLException {
1242 return getBoolean(findColumn(columnName));
1250 * @param columnName the SQL name of the column
1257 public byte getByte(String columnName) throws SQLException {
1258 return getByte(findColumn(columnName));
1266 * @param columnName the SQL name of the column
1273 public short getShort(String columnName) throws SQLException {
1274 return getShort(findColumn(columnName));
1282 * @param columnName the SQL name of the column
1289 public int getInt(String columnName) throws SQLException {
1290 return getInt(findColumn(columnName));
1298 * @param columnName the SQL name of the column
1305 public long getLong(String columnName) throws SQLException {
1306 return getLong(findColumn(columnName));
1314 * @param columnName the SQL name of the column
1321 public float getFloat(String columnName) throws SQLException {
1322 return getFloat(findColumn(columnName));
1330 * @param columnName the SQL name of the column
1337 public double getDouble(String columnName) throws SQLException {
1338 return getDouble(findColumn(columnName));
1346 * @param columnName the SQL name of the column
1355 public BigDecimal getBigDecimal(String columnName, int scale) throws SQLException {
1356 return getBigDecimal(findColumn(columnName), scale);
1365 * @param columnName the SQL name of the column
1372 public byte[] getBytes(String columnName) throws SQLException {
1373 return getBytes(findColumn(columnName));
1381 * @param columnName the SQL name of the column
1388 public java.sql.Date getDate(String columnName) throws SQLException {
1389 return getDate(findColumn(columnName));
1397 * @param columnName the SQL name of the column
1405 public java.sql.Time getTime(String columnName) throws SQLException {
1406 return getTime(findColumn(columnName));
1414 * @param columnName the SQL name of the column
1421 public java.sql.Timestamp getTimestamp(String columnName) throws SQLException {
1422 return getTimestamp(findColumn(columnName));
1440 * @param columnName the SQL name of the column
1449 public java.io.InputStream getAsciiStream(String columnName) throws SQLException {
1450 return getAsciiStream(findColumn(columnName));
1470 * @param columnName the SQL name of the column
1480 public java.io.InputStream getUnicodeStream(String columnName) throws SQLException {
1481 return getUnicodeStream(findColumn(columnName));
1499 * @param columnName the SQL name of the column
1507 public java.io.InputStream getBinaryStream(String columnName) throws SQLException {
1508 return getBinaryStream(findColumn(columnName));
1674 * @param columnName the SQL name of the column
1680 public Object getObject(String columnName) throws SQLException {
1681 return getObject(findColumn(columnName));
1691 * @param columnName the name of the column
1697 public int findColumn(String columnName) throws SQLException {
1700 return rs.findColumn(columnName);
1734 * @param columnName the name of the column
1738 public java.io.Reader getCharacterStream(String columnName) throws SQLException {
1739 return getCharacterStream(findColumn(columnName));
1766 * @param columnName the column name
1774 public BigDecimal getBigDecimal(String columnName) throws SQLException {
1775 return getBigDecimal(findColumn(columnName));
2676 * @param columnName the name of the column
2682 public void updateNull(String columnName) throws SQLException {
2683 updateNull(findColumn(columnName));
2693 * @param columnName the name of the column
2698 public void updateBoolean(String columnName, boolean x) throws SQLException {
2699 updateBoolean(findColumn(columnName), x);
2709 * @param columnName the name of the column
2714 public void updateByte(String columnName, byte x) throws SQLException {
2715 updateByte(findColumn(columnName), x);
2725 * @param columnName the name of the column
2730 public void updateShort(String columnName, short x) throws SQLException {
2731 updateShort(findColumn(columnName), x);
2741 * @param columnName the name of the column
2746 public void updateInt(String columnName, int x) throws SQLException {
2747 updateInt(findColumn(columnName), x);
2757 * @param columnName the name of the column
2762 public void updateLong(String columnName, long x) throws SQLException {
2763 updateLong(findColumn(columnName), x);
2773 * @param columnName the name of the column
2778 public void updateFloat(String columnName, float x) throws SQLException {
2779 updateFloat(findColumn(columnName), x);
2789 * @param columnName the name of the column
2794 public void updateDouble(String columnName, double x) throws SQLException {
2795 updateDouble(findColumn(columnName), x);
2806 * @param columnName the name of the column
2811 public void updateBigDecimal(String columnName, BigDecimal x) throws SQLException {
2812 updateBigDecimal(findColumn(columnName), x);
2822 * @param columnName the name of the column
2827 public void updateString(String columnName, String x) throws SQLException {
2828 updateString(findColumn(columnName), x);
2847 * @param columnName the name of the column
2852 public void updateBytes(String columnName, byte x[]) throws SQLException {
2853 updateBytes(findColumn(columnName), x);
2863 * @param columnName the name of the column
2868 public void updateDate(String columnName, java.sql.Date x) throws SQLException {
2869 updateDate(findColumn(columnName), x);
2879 * @param columnName the name of the column
2884 public void updateTime(String columnName, java.sql.Time x) throws SQLException {
2885 updateTime(findColumn(columnName), x);
2896 * @param columnName the name of the column
2901 public void updateTimestamp(String columnName, java.sql.Timestamp x) throws SQLException {
2902 updateTimestamp(findColumn(columnName), x);
2912 * @param columnName the name of the column
2918 public void updateAsciiStream(String columnName, java.io.InputStream x, int length) throws SQLException {
2919 updateAsciiStream(findColumn(columnName), x, length);
2929 * @param columnName the name of the column
2935 public void updateBinaryStream(String columnName, java.io.InputStream x, int length) throws SQLException {
2936 updateBinaryStream(findColumn(columnName), x, length);
2947 * @param columnName the name of the column
2953 public void updateCharacterStream(String columnName, java.io.Reader reader, int length) throws SQLException {
2954 updateCharacterStream(findColumn(columnName), reader, length);
2964 * @param columnName the name of the column
2973 public void updateObject(String columnName, Object x, int scale) throws SQLException {
2974 updateObject(findColumn(columnName), x, scale);
2984 * @param columnName the name of the column
2989 public void updateObject(String columnName, Object x) throws SQLException {
2990 updateObject(findColumn(columnName), x);
3385 * @param columnName the SQL name of the column from which to retrieve the value
3396 public java.sql.Date getDate(String columnName, Calendar cal) throws SQLException {
3397 return getDate(findColumn(columnName), cal);
3430 * @param columnName the SQL name of the column
3440 public java.sql.Time getTime(String columnName, Calendar cal) throws SQLException {
3441 return getTime(findColumn(columnName), cal);
3476 * @param columnName the SQL name of the column
3486 public java.sql.Timestamp getTimestamp(String columnName, Calendar cal) throws SQLException {
3487 return getTimestamp(findColumn(columnName), cal);
3534 * @param columnName a <code>String</code> object that must match the
3542 public void updateRef(String columnName, java.sql.Ref ref)
3544 updateRef(findColumn(columnName), ref);
3590 * @param columnName a <code>String</code> object that must match the
3598 public void updateClob(String columnName, Clob c) throws SQLException {
3599 updateClob(findColumn(columnName), c);
3644 * @param columnName a <code>String</code> object that must match the
3652 public void updateBlob(String columnName, Blob b) throws SQLException {
3653 updateBlob(findColumn(columnName), b);
3698 * @param columnName a <code>String</code> object that must match the
3706 public void updateArray(String columnName, Array a) throws SQLException {
3707 updateArray(findColumn(columnName), a);
3721 public java.net.URL getURL(String columnName) throws SQLException {
3722 return getURL(findColumn(columnName));
3772 * parameter index is out of bounds or if the columnName is
3936 * @param columnName the name of the column into this rowset
3941 public void setMatchColumn(String columnName) throws SQLException {
3943 if(columnName == null || (columnName= columnName.trim()).equals("")) {
3947 strMatchColumns.set(0, columnName);
3986 * @param columnName the index into this rowset
3989 * parameter index is out of bounds or if the columnName is
3993 public void unsetMatchColumn(String columnName) throws SQLException {
3995 columnName = columnName.trim();
3997 if(!((strMatchColumns.get(0)).equals(columnName))) {
4679 * @param columnName the name of the column
4685 public RowId getRowId(String columnName) throws SQLException {
4712 * @param columnName the name of the column
4717 public void updateRowId(String columnName, RowId x) throws SQLException {
4757 * @param columnName name of the Column
4762 public void updateNString(String columnName, String nString) throws SQLException {
4782 * @param columnName name of the column
4787 public void updateNClob(String columnName, NClob nClob) throws SQLException {
4975 * @param columnName the name of the column
4982 public java.io.Reader getNCharacterStream(String columnName) throws SQLException {
5010 * @param columnName the name of the column
5015 public void updateSQLXML(String columnName, SQLXML xmlObject) throws SQLException {
5045 * @param columnName the SQL name of the column
5051 public String getNString(String columnName) throws SQLException {
5086 * @param columnName - name of the Column
5092 public void updateNCharacterStream(String columnName,