Lines Matching refs:columnIndex

93     public String getString(int columnIndex) throws SQLException {
98 public boolean getBoolean(int columnIndex) throws SQLException {
103 public byte getByte(int columnIndex) throws SQLException {
108 public short getShort(int columnIndex) throws SQLException {
113 public int getInt(int columnIndex) throws SQLException {
118 public long getLong(int columnIndex) throws SQLException {
123 public float getFloat(int columnIndex) throws SQLException {
128 public double getDouble(int columnIndex) throws SQLException {
133 public BigDecimal getBigDecimal(int columnIndex, int scale) throws SQLException {
138 public byte[] getBytes(int columnIndex) throws SQLException {
143 public Date getDate(int columnIndex) throws SQLException {
148 public Time getTime(int columnIndex) throws SQLException {
153 public Timestamp getTimestamp(int columnIndex) throws SQLException {
158 public InputStream getAsciiStream(int columnIndex) throws SQLException {
163 public InputStream getUnicodeStream(int columnIndex) throws SQLException {
168 public InputStream getBinaryStream(int columnIndex) throws SQLException {
273 public Object getObject(int columnIndex) throws SQLException {
288 public Reader getCharacterStream(int columnIndex) throws SQLException {
298 public BigDecimal getBigDecimal(int columnIndex) throws SQLException {
383 public void updateNull(int columnIndex) throws SQLException {
388 public void updateBoolean(int columnIndex, boolean x) throws SQLException {
393 public void updateByte(int columnIndex, byte x) throws SQLException {
398 public void updateShort(int columnIndex, short x) throws SQLException {
403 public void updateInt(int columnIndex, int x) throws SQLException {
408 public void updateLong(int columnIndex, long x) throws SQLException {
413 public void updateFloat(int columnIndex, float x) throws SQLException {
418 public void updateDouble(int columnIndex, double x) throws SQLException {
423 public void updateBigDecimal(int columnIndex, BigDecimal x) throws SQLException {
428 public void updateString(int columnIndex, String x) throws SQLException {
433 public void updateBytes(int columnIndex, byte[] x) throws SQLException {
438 public void updateDate(int columnIndex, Date x) throws SQLException {
443 public void updateTime(int columnIndex, Time x) throws SQLException {
448 public void updateTimestamp(int columnIndex, Timestamp x) throws SQLException {
453 public void updateAsciiStream(int columnIndex, InputStream x, int length) throws SQLException {
458 public void updateBinaryStream(int columnIndex, InputStream x, int length) throws SQLException {
463 public void updateCharacterStream(int columnIndex, Reader x, int length) throws SQLException {
468 public void updateObject(int columnIndex, Object x, int scaleOrLength) throws SQLException {
473 public void updateObject(int columnIndex, Object x) throws SQLException {
613 public Object getObject(int columnIndex, Map<String, Class<?>> map) throws SQLException {
618 public Ref getRef(int columnIndex) throws SQLException {
623 public Blob getBlob(int columnIndex) throws SQLException {
628 public Clob getClob(int columnIndex) throws SQLException {
633 public Array getArray(int columnIndex) throws SQLException {
663 public Date getDate(int columnIndex, Calendar cal) throws SQLException {
673 public Time getTime(int columnIndex, Calendar cal) throws SQLException {
683 public Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException {
693 public java.net.URL getURL(int columnIndex) throws SQLException {
703 public void updateRef(int columnIndex, Ref x) throws SQLException {
713 public void updateBlob(int columnIndex, Blob x) throws SQLException {
723 public void updateClob(int columnIndex, Clob x) throws SQLException {
733 public void updateArray(int columnIndex, Array x) throws SQLException {
743 public RowId getRowId(int columnIndex) throws SQLException {
753 public void updateRowId(int columnIndex, RowId x) throws SQLException {
773 public void updateNString(int columnIndex, String nString) throws SQLException {
783 public void updateNClob(int columnIndex, NClob nClob) throws SQLException {
793 public NClob getNClob(int columnIndex) throws SQLException {
803 public SQLXML getSQLXML(int columnIndex) throws SQLException {
813 public void updateSQLXML(int columnIndex, SQLXML xmlObject) throws SQLException {
823 public String getNString(int columnIndex) throws SQLException {
833 public Reader getNCharacterStream(int columnIndex) throws SQLException {
843 public void updateNCharacterStream(int columnIndex, Reader x, long length) throws SQLException {
853 public void updateAsciiStream(int columnIndex, InputStream x, long length) throws SQLException {
858 public void updateBinaryStream(int columnIndex, InputStream x, long length) throws SQLException {
863 public void updateCharacterStream(int columnIndex, Reader x, long length) throws SQLException {
883 public void updateBlob(int columnIndex, InputStream inputStream, long length) throws SQLException {
893 public void updateClob(int columnIndex, Reader reader, long length) throws SQLException {
903 public void updateNClob(int columnIndex, Reader reader, long length) throws SQLException {
913 public void updateNCharacterStream(int columnIndex, Reader x) throws SQLException {
923 public void updateAsciiStream(int columnIndex, InputStream x) throws SQLException {
928 public void updateBinaryStream(int columnIndex, InputStream x) throws SQLException {
933 public void updateCharacterStream(int columnIndex, Reader x) throws SQLException {
953 public void updateBlob(int columnIndex, InputStream inputStream) throws SQLException {
963 public void updateClob(int columnIndex, Reader reader) throws SQLException {
973 public void updateNClob(int columnIndex, Reader reader) throws SQLException {
983 public <T> T getObject(int columnIndex, Class<T> type) throws SQLException {