Lines Matching refs:columnIndex

67     public synchronized XInputStream getBinaryStream(int columnIndex) throws SQLException {  in getBinaryStream()  argument
69 XBlob blob = getBlob(columnIndex); in getBinaryStream()
77 public XInputStream getCharacterStream(int columnIndex) throws SQLException { in getCharacterStream() argument
79 XClob clob = getClob(columnIndex); in getCharacterStream()
87 public synchronized boolean getBoolean(int columnIndex) throws SQLException { in getBoolean() argument
90 return ((java.sql.CallableStatement)jdbcStatement).getBoolean(columnIndex); in getBoolean()
97 public synchronized byte getByte(int columnIndex) throws SQLException { in getByte() argument
100 return ((java.sql.CallableStatement)jdbcStatement).getByte(columnIndex); in getByte()
107 public synchronized byte[] getBytes(int columnIndex) throws SQLException { in getBytes() argument
110 return ((java.sql.CallableStatement)jdbcStatement).getBytes(columnIndex); in getBytes()
117 public synchronized Date getDate(int columnIndex) throws SQLException { in getDate() argument
120 … java.sql.Date jdbcDate = ((java.sql.CallableStatement)jdbcStatement).getDate(columnIndex); in getDate()
132 public synchronized double getDouble(int columnIndex) throws SQLException { in getDouble() argument
135 return ((java.sql.CallableStatement)jdbcStatement).getDouble(columnIndex); in getDouble()
142 public synchronized float getFloat(int columnIndex) throws SQLException { in getFloat() argument
145 return ((java.sql.CallableStatement)jdbcStatement).getFloat(columnIndex); in getFloat()
152 public synchronized int getInt(int columnIndex) throws SQLException { in getInt() argument
155 return ((java.sql.CallableStatement)jdbcStatement).getInt(columnIndex); in getInt()
162 public synchronized long getLong(int columnIndex) throws SQLException { in getLong() argument
165 return ((java.sql.CallableStatement)jdbcStatement).getLong(columnIndex); in getLong()
172 public synchronized XArray getArray(int columnIndex) throws SQLException { in getArray() argument
175 … java.sql.Array array = ((java.sql.CallableStatement)jdbcStatement).getArray(columnIndex); in getArray()
187 public synchronized XClob getClob(int columnIndex) throws SQLException { in getClob() argument
190 java.sql.Clob clob = ((java.sql.CallableStatement)jdbcStatement).getClob(columnIndex); in getClob()
202 public synchronized XBlob getBlob(int columnIndex) throws SQLException { in getBlob() argument
205 java.sql.Blob blob = ((java.sql.CallableStatement)jdbcStatement).getBlob(columnIndex); in getBlob()
217 public synchronized XRef getRef(int columnIndex) throws SQLException { in getRef() argument
220 java.sql.Ref ref = ((java.sql.CallableStatement)jdbcStatement).getRef(columnIndex); in getRef()
232 public synchronized Object getObject(int columnIndex, XNameAccess typeMap) throws SQLException { in getObject() argument
242 Object object = ((java.sql.CallableStatement)jdbcStatement).getObject(columnIndex); in getObject()
261 public synchronized short getShort(int columnIndex) throws SQLException { in getShort() argument
264 return ((java.sql.CallableStatement)jdbcStatement).getShort(columnIndex); in getShort()
271 public synchronized String getString(int columnIndex) throws SQLException { in getString() argument
274 String string = ((java.sql.CallableStatement)jdbcStatement).getString(columnIndex); in getString()
286 public synchronized Time getTime(int columnIndex) throws SQLException { in getTime() argument
289 java.sql.Time time = ((java.sql.CallableStatement)jdbcStatement).getTime(columnIndex); in getTime()
301 public synchronized DateTime getTimestamp(int columnIndex) throws SQLException { in getTimestamp() argument
304 …va.sql.Timestamp timestamp = ((java.sql.CallableStatement)jdbcStatement).getTimestamp(columnIndex); in getTimestamp()