Lines Matching refs:sql

43     public JavaSQLCallableStatement(JavaSQLConnection connection, String sql) {  in JavaSQLCallableStatement()  argument
44 super(connection, sql); in JavaSQLCallableStatement()
58 } catch (java.sql.SQLException sqlException) { in createStatement()
90 return ((java.sql.CallableStatement)jdbcStatement).getBoolean(columnIndex); in getBoolean()
91 } catch (java.sql.SQLException exception) { in getBoolean()
100 return ((java.sql.CallableStatement)jdbcStatement).getByte(columnIndex); in getByte()
101 } catch (java.sql.SQLException exception) { in getByte()
110 return ((java.sql.CallableStatement)jdbcStatement).getBytes(columnIndex); in getBytes()
111 } catch (java.sql.SQLException exception) { in getBytes()
120 … java.sql.Date jdbcDate = ((java.sql.CallableStatement)jdbcStatement).getDate(columnIndex); in getDate()
126 } catch (java.sql.SQLException exception) { in getDate()
135 return ((java.sql.CallableStatement)jdbcStatement).getDouble(columnIndex); in getDouble()
136 } catch (java.sql.SQLException exception) { in getDouble()
145 return ((java.sql.CallableStatement)jdbcStatement).getFloat(columnIndex); in getFloat()
146 } catch (java.sql.SQLException exception) { in getFloat()
155 return ((java.sql.CallableStatement)jdbcStatement).getInt(columnIndex); in getInt()
156 } catch (java.sql.SQLException exception) { in getInt()
165 return ((java.sql.CallableStatement)jdbcStatement).getLong(columnIndex); in getLong()
166 } catch (java.sql.SQLException exception) { in getLong()
175 … java.sql.Array array = ((java.sql.CallableStatement)jdbcStatement).getArray(columnIndex); in getArray()
181 } catch (java.sql.SQLException exception) { in getArray()
190 java.sql.Clob clob = ((java.sql.CallableStatement)jdbcStatement).getClob(columnIndex); in getClob()
196 } catch (java.sql.SQLException exception) { in getClob()
205 java.sql.Blob blob = ((java.sql.CallableStatement)jdbcStatement).getBlob(columnIndex); in getBlob()
211 } catch (java.sql.SQLException exception) { in getBlob()
220 java.sql.Ref ref = ((java.sql.CallableStatement)jdbcStatement).getRef(columnIndex); in getRef()
226 } catch (java.sql.SQLException exception) { in getRef()
242 Object object = ((java.sql.CallableStatement)jdbcStatement).getObject(columnIndex); in getObject()
247 } else if (object instanceof java.sql.Date) { in getObject()
248 ret = DBTypeConversion.toDate(((java.sql.Date)object).toString()); in getObject()
249 } else if (object instanceof java.sql.Time) { in getObject()
250 ret = DBTypeConversion.toTime(((java.sql.Time)object).toString()); in getObject()
251 } else if (object instanceof java.sql.Timestamp) { in getObject()
252 ret = DBTypeConversion.toDateTime(((java.sql.Timestamp)object).toString()); in getObject()
255 } catch (java.sql.SQLException exception) { in getObject()
264 return ((java.sql.CallableStatement)jdbcStatement).getShort(columnIndex); in getShort()
265 } catch (java.sql.SQLException exception) { in getShort()
274 String string = ((java.sql.CallableStatement)jdbcStatement).getString(columnIndex); in getString()
280 } catch (java.sql.SQLException exception) { in getString()
289 java.sql.Time time = ((java.sql.CallableStatement)jdbcStatement).getTime(columnIndex); in getTime()
295 } catch (java.sql.SQLException exception) { in getTime()
304 …java.sql.Timestamp timestamp = ((java.sql.CallableStatement)jdbcStatement).getTimestamp(columnInde… in getTimestamp()
310 } catch (java.sql.SQLException exception) { in getTimestamp()
319 return ((java.sql.CallableStatement)jdbcStatement).wasNull(); in wasNull()
320 } catch (java.sql.SQLException exception) { in wasNull()
331 … ((java.sql.CallableStatement)jdbcStatement).registerOutParameter(index, sqlType, typeName); in registerOutParameter()
332 } catch (java.sql.SQLException exception) { in registerOutParameter()
341 ((java.sql.CallableStatement)jdbcStatement).registerOutParameter(index, sqlType, scale); in registerNumericOutParameter()
342 } catch (java.sql.SQLException exception) { in registerNumericOutParameter()