Lines Matching refs:columnName

2468      * @param columnName a <code>String</code> object giving the SQL name of
2480 public String getString(String columnName) throws SQLException {
2481 return getString(getColIdxByName(columnName));
2488 * @param columnName a <code>String</code> object giving the SQL name of
2499 public boolean getBoolean(String columnName) throws SQLException {
2500 return getBoolean(getColIdxByName(columnName));
2507 * @param columnName a <code>String</code> object giving the SQL name of
2519 public byte getByte(String columnName) throws SQLException {
2520 return getByte(getColIdxByName(columnName));
2527 * @param columnName a <code>String</code> object giving the SQL name of
2540 public short getShort(String columnName) throws SQLException {
2541 return getShort(getColIdxByName(columnName));
2548 * @param columnName a <code>String</code> object giving the SQL name of
2561 public int getInt(String columnName) throws SQLException {
2562 return getInt(getColIdxByName(columnName));
2569 * @param columnName a <code>String</code> object giving the SQL name of
2582 public long getLong(String columnName) throws SQLException {
2583 return getLong(getColIdxByName(columnName));
2590 * @param columnName a <code>String</code> object giving the SQL name of
2603 public float getFloat(String columnName) throws SQLException {
2604 return getFloat(getColIdxByName(columnName));
2612 * @param columnName a <code>String</code> object giving the SQL name of
2625 public double getDouble(String columnName) throws SQLException {
2626 return getDouble(getColIdxByName(columnName));
2633 * @param columnName a <code>String</code> object giving the SQL name of
2646 * @deprecated Use the <code>getBigDecimal(String columnName)</code>
2649 public BigDecimal getBigDecimal(String columnName, int scale) throws SQLException {
2650 return getBigDecimal(getColIdxByName(columnName), scale);
2658 * @param columnName a <code>String</code> object giving the SQL name of
2670 public byte[] getBytes(String columnName) throws SQLException {
2671 return getBytes(getColIdxByName(columnName));
2678 * @param columnName a <code>String</code> object giving the SQL name of
2688 public java.sql.Date getDate(String columnName) throws SQLException {
2689 return getDate(getColIdxByName(columnName));
2696 * @param columnName a <code>String</code> object giving the SQL name of
2704 public java.sql.Time getTime(String columnName) throws SQLException {
2705 return getTime(getColIdxByName(columnName));
2712 * @param columnName a <code>String</code> object giving the SQL name of
2720 public java.sql.Timestamp getTimestamp(String columnName) throws SQLException {
2721 return getTimestamp(getColIdxByName(columnName));
2739 * @param columnName a <code>String</code> object giving the SQL name of
2754 public java.io.InputStream getAsciiStream(String columnName) throws SQLException {
2755 return getAsciiStream(getColIdxByName(columnName));
2770 * @param columnName a <code>String</code> object giving the SQL name of
2780 public java.io.InputStream getUnicodeStream(String columnName) throws SQLException {
2781 return getUnicodeStream(getColIdxByName(columnName));
2799 * @param columnName a <code>String</code> object giving the SQL name of
2813 public java.io.InputStream getBinaryStream(String columnName) throws SQLException {
2814 return getBinaryStream(getColIdxByName(columnName));
3008 * @param columnName a <code>String</code> object that must match the
3018 public Object getObject(String columnName) throws SQLException {
3019 return getObject(getColIdxByName(columnName));
3028 * @param columnName a <code>String</code> object that must match the
3034 public int findColumn(String columnName) throws SQLException {
3035 return getColIdxByName(columnName);
3105 * @param columnName a <code>String</code> object giving the SQL name of
3117 public java.io.Reader getCharacterStream(String columnName) throws SQLException {
3118 return getCharacterStream(getColIdxByName(columnName));
3169 * @param columnName a <code>String</code> object that must match the
3183 public BigDecimal getBigDecimal(String columnName) throws SQLException {
3184 return getBigDecimal(getColIdxByName(columnName));
3804 * @param columnName the <code>String</code> column name column that may be have
3813 public boolean columnUpdated(String columnName) throws SQLException {
3814 return columnUpdated(getColIdxByName(columnName));
4933 * @param columnName a <code>String</code> object that must match the
4940 public void updateNull(String columnName) throws SQLException {
4941 updateNull(getColIdxByName(columnName));
4958 * @param columnName a <code>String</code> object that must match the
4966 public void updateBoolean(String columnName, boolean x) throws SQLException {
4967 updateBoolean(getColIdxByName(columnName), x);
4984 * @param columnName a <code>String</code> object that must match the
4992 public void updateByte(String columnName, byte x) throws SQLException {
4993 updateByte(getColIdxByName(columnName), x);
5010 * @param columnName a <code>String</code> object that must match the
5018 public void updateShort(String columnName, short x) throws SQLException {
5019 updateShort(getColIdxByName(columnName), x);
5036 * @param columnName a <code>String</code> object that must match the
5044 public void updateInt(String columnName, int x) throws SQLException {
5045 updateInt(getColIdxByName(columnName), x);
5062 * @param columnName a <code>String</code> object that must match the
5070 public void updateLong(String columnName, long x) throws SQLException {
5071 updateLong(getColIdxByName(columnName), x);
5088 * @param columnName a <code>String</code> object that must match the
5096 public void updateFloat(String columnName, float x) throws SQLException {
5097 updateFloat(getColIdxByName(columnName), x);
5114 * @param columnName a <code>String</code> object that must match the
5122 public void updateDouble(String columnName, double x) throws SQLException {
5123 updateDouble(getColIdxByName(columnName), x);
5140 * @param columnName a <code>String</code> object that must match the
5148 public void updateBigDecimal(String columnName, BigDecimal x) throws SQLException {
5149 updateBigDecimal(getColIdxByName(columnName), x);
5166 * @param columnName a <code>String</code> object that must match the
5174 public void updateString(String columnName, String x) throws SQLException {
5175 updateString(getColIdxByName(columnName), x);
5192 * @param columnName a <code>String</code> object that must match the
5200 public void updateBytes(String columnName, byte x[]) throws SQLException {
5201 updateBytes(getColIdxByName(columnName), x);
5218 * @param columnName a <code>String</code> object that must match the
5228 public void updateDate(String columnName, java.sql.Date x) throws SQLException {
5229 updateDate(getColIdxByName(columnName), x);
5246 * @param columnName a <code>String</code> object that must match the
5256 public void updateTime(String columnName, java.sql.Time x) throws SQLException {
5257 updateTime(getColIdxByName(columnName), x);
5274 * @param columnName a <code>String</code> object that must match the
5287 public void updateTimestamp(String columnName, java.sql.Timestamp x) throws SQLException {
5288 updateTimestamp(getColIdxByName(columnName), x);
5305 * @param columnName a <code>String</code> object that must match the
5310 public void updateAsciiStream(String columnName,
5313 updateAsciiStream(getColIdxByName(columnName), x, length);
5330 * @param columnName a <code>String</code> object that must match the
5342 public void updateBinaryStream(String columnName, java.io.InputStream x, int length) throws SQLException {
5343 updateBinaryStream(getColIdxByName(columnName), x, length);
5360 * @param columnName a <code>String</code> object that must match the
5373 public void updateCharacterStream(String columnName,
5376 updateCharacterStream(getColIdxByName(columnName), reader, length);
5396 * @param columnName a <code>String</code> object that must match the
5406 public void updateObject(String columnName, Object x, int scale) throws SQLException {
5407 updateObject(getColIdxByName(columnName), x, scale);
5424 * @param columnName a <code>String</code> object that must match the
5432 public void updateObject(String columnName, Object x) throws SQLException {
5433 updateObject(getColIdxByName(columnName), x);
5903 * @param columnName a <code>String</code> object that must match the
5913 public Object getObject(String columnName,
5916 return getObject(getColIdxByName(columnName), map);
6060 * @param columnName a <code>String</code> object that must match the
6072 public java.sql.Date getDate(String columnName, Calendar cal) throws SQLException {
6073 return getDate(getColIdxByName(columnName), cal);
6139 * @param columnName a <code>String</code> object that must match the
6151 public java.sql.Time getTime(String columnName, Calendar cal) throws SQLException {
6152 return getTime(getColIdxByName(columnName), cal);
6222 * @param columnName a <code>String</code> object that must match the
6234 public java.sql.Timestamp getTimestamp(String columnName, Calendar cal) throws SQLException {
6235 return getTimestamp(getColIdxByName(columnName), cal);
6524 * @param columnName a <code>String</code> object that must match the
6532 public void updateRef(String columnName, java.sql.Ref ref) throws SQLException {
6533 updateRef(getColIdxByName(columnName), ref);
6591 * @param columnName a <code>String</code> object that must match the
6599 public void updateClob(String columnName, Clob c) throws SQLException {
6600 updateClob(getColIdxByName(columnName), c);
6658 * @param columnName a <code>String</code> object that must match the
6666 public void updateBlob(String columnName, Blob b) throws SQLException {
6667 updateBlob(getColIdxByName(columnName), b);
6719 * @param columnName a <code>String</code> object that must match the
6727 public void updateArray(String columnName, Array a) throws SQLException {
6728 updateArray(getColIdxByName(columnName), a);
6785 public java.net.URL getURL(String columnName) throws SQLException {
6786 return getURL(getColIdxByName(columnName));
6948 * parameter index is out of bounds or if the columnName is
7112 * @param columnName the name of the column into this rowset
7117 public void setMatchColumn(String columnName) throws SQLException {
7119 if(columnName == null || (columnName= columnName.trim()).equals("") ) {
7123 strMatchColumns.set(0, columnName);
7162 * @param columnName the index into this rowset
7165 * parameter index is out of bounds or if the columnName is
7168 public void unsetMatchColumn(String columnName) throws SQLException {
7170 columnName = columnName.trim();
7172 if(!((strMatchColumns.get(0)).equals(columnName))) {
7747 * @param columnName the name of the column
7753 public RowId getRowId(String columnName) throws SQLException {
7780 * @param columnName the name of the column
7785 public void updateRowId(String columnName, RowId x) throws SQLException {
7825 * @param columnName name of the Column
7830 public void updateNString(String columnName, String nString) throws SQLException {
7850 * @param columnName name of the column
7855 public void updateNClob(String columnName, NClob nClob) throws SQLException {
8026 * @param columnName the name of the column
8033 public java.io.Reader getNCharacterStream(String columnName) throws SQLException {
8062 * @param columnName the name of the column
8067 public void updateSQLXML(String columnName, SQLXML xmlObject) throws SQLException {
8097 * @param columnName the SQL name of the column
8103 public String getNString(String columnName) throws SQLException {
8138 * @param columnName - name of the Column
8144 public void updateNCharacterStream(String columnName,