Lines Matching refs:columnIndex

677     public String getString(int columnIndex) throws SQLException {
682 public boolean getBoolean(int columnIndex) throws SQLException {
687 public byte getByte(int columnIndex) throws SQLException {
692 public short getShort(int columnIndex) throws SQLException {
697 public int getInt(int columnIndex) throws SQLException {
702 public long getLong(int columnIndex) throws SQLException {
707 public float getFloat(int columnIndex) throws SQLException {
712 public double getDouble(int columnIndex) throws SQLException {
717 public BigDecimal getBigDecimal(int columnIndex, int scale) throws SQLException {
722 public byte[] getBytes(int columnIndex) throws SQLException {
727 public Date getDate(int columnIndex) throws SQLException {
732 public Time getTime(int columnIndex) throws SQLException {
737 public Timestamp getTimestamp(int columnIndex) throws SQLException {
742 public InputStream getAsciiStream(int columnIndex) throws SQLException {
747 public InputStream getUnicodeStream(int columnIndex) throws SQLException {
752 public InputStream getBinaryStream(int columnIndex) throws SQLException {
857 public Object getObject(int columnIndex) throws SQLException {
872 public Reader getCharacterStream(int columnIndex) throws SQLException {
882 public BigDecimal getBigDecimal(int columnIndex) throws SQLException {
997 public void updateNull(int columnIndex) throws SQLException {
1002 public void updateBoolean(int columnIndex, boolean x) throws SQLException {
1007 public void updateByte(int columnIndex, byte x) throws SQLException {
1012 public void updateShort(int columnIndex, short x) throws SQLException {
1017 public void updateInt(int columnIndex, int x) throws SQLException {
1022 public void updateLong(int columnIndex, long x) throws SQLException {
1027 public void updateFloat(int columnIndex, float x) throws SQLException {
1032 public void updateDouble(int columnIndex, double x) throws SQLException {
1037 public void updateBigDecimal(int columnIndex, BigDecimal x) throws SQLException {
1042 public void updateString(int columnIndex, String x) throws SQLException {
1047 public void updateBytes(int columnIndex, byte[] x) throws SQLException {
1052 public void updateDate(int columnIndex, Date x) throws SQLException {
1057 public void updateTime(int columnIndex, Time x) throws SQLException {
1062 public void updateTimestamp(int columnIndex, Timestamp x) throws SQLException {
1067 public void updateAsciiStream(int columnIndex, InputStream x, int length) throws SQLException {
1072 public void updateBinaryStream(int columnIndex, InputStream x, int length) throws SQLException {
1077 public void updateCharacterStream(int columnIndex, Reader x, int length) throws SQLException {
1082 public void updateObject(int columnIndex, Object x, int scaleOrLength) throws SQLException {
1087 public void updateObject(int columnIndex, Object x) throws SQLException {
1227 public Object getObject(int columnIndex, Map<String, Class<?>> map) throws SQLException {
1232 public Ref getRef(int columnIndex) throws SQLException {
1237 public Blob getBlob(int columnIndex) throws SQLException {
1242 public Clob getClob(int columnIndex) throws SQLException {
1247 public Array getArray(int columnIndex) throws SQLException {
1277 public Date getDate(int columnIndex, Calendar cal) throws SQLException {
1287 public Time getTime(int columnIndex, Calendar cal) throws SQLException {
1297 public Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException {
1307 public URL getURL(int columnIndex) throws SQLException {
1317 public void updateRef(int columnIndex, Ref x) throws SQLException {
1327 public void updateBlob(int columnIndex, Blob x) throws SQLException {
1337 public void updateClob(int columnIndex, Clob x) throws SQLException {
1347 public void updateArray(int columnIndex, Array x) throws SQLException {
1357 public RowId getRowId(int columnIndex) throws SQLException {
1367 public void updateRowId(int columnIndex, RowId x) throws SQLException {
1387 public void updateNString(int columnIndex, String nString) throws SQLException {
1397 public void updateNClob(int columnIndex, NClob nClob) throws SQLException {
1407 public NClob getNClob(int columnIndex) throws SQLException {
1417 public SQLXML getSQLXML(int columnIndex) throws SQLException {
1427 public void updateSQLXML(int columnIndex, SQLXML xmlObject) throws SQLException {
1437 public String getNString(int columnIndex) throws SQLException {
1447 public Reader getNCharacterStream(int columnIndex) throws SQLException {
1457 public void updateNCharacterStream(int columnIndex, Reader x, long length) throws SQLException {
1467 public void updateAsciiStream(int columnIndex, InputStream x, long length) throws SQLException {
1472 public void updateBinaryStream(int columnIndex, InputStream x, long length) throws SQLException {
1477 public void updateCharacterStream(int columnIndex, Reader x, long length) throws SQLException {
1497 public void updateBlob(int columnIndex, InputStream inputStream, long length) throws SQLException {
1507 public void updateClob(int columnIndex, Reader reader, long length) throws SQLException {
1517 public void updateNClob(int columnIndex, Reader reader, long length) throws SQLException {
1527 public void updateNCharacterStream(int columnIndex, Reader x) throws SQLException {
1537 public void updateAsciiStream(int columnIndex, InputStream x) throws SQLException {
1542 public void updateBinaryStream(int columnIndex, InputStream x) throws SQLException {
1547 public void updateCharacterStream(int columnIndex, Reader x) throws SQLException {
1567 public void updateBlob(int columnIndex, InputStream inputStream) throws SQLException {
1577 public void updateClob(int columnIndex, Reader reader) throws SQLException {
1587 public void updateNClob(int columnIndex, Reader reader) throws SQLException {
1597 public <T> T getObject(int columnIndex, Class<T> type) throws SQLException {