Lines Matching refs:index

157     public synchronized void setArray(int index, XArray x) throws SQLException {  in setArray()  argument
164 …public synchronized void setBinaryStream(int index, XInputStream x, int length) throws SQLExceptio… in setBinaryStream() argument
165 logger.log(LogLevel.FINER, Resources.STR_LOG_BINARYSTREAM_PARAMETER, index); in setBinaryStream()
172 …((java.sql.PreparedStatement)jdbcStatement).setBinaryStream(index, byteArrayInputStream, bytesRead… in setBinaryStream()
179 public synchronized void setBlob(int index, XBlob x) throws SQLException { in setBlob() argument
186 public synchronized void setBoolean(int index, boolean x) throws SQLException { in setBoolean() argument
188 logger.log(LogLevel.FINE, Resources.STR_LOG_BOOLEAN_PARAMETER, index, x); in setBoolean()
190 ((java.sql.PreparedStatement)jdbcStatement).setBoolean(index, x); in setBoolean()
197 public synchronized void setByte(int index, byte x) throws SQLException { in setByte() argument
199 logger.log(LogLevel.FINE, Resources.STR_LOG_BYTE_PARAMETER, index, x); in setByte()
201 ((java.sql.PreparedStatement)jdbcStatement).setByte(index, x); in setByte()
208 public synchronized void setBytes(int index, byte[] x) throws SQLException { in setBytes() argument
210 logger.log(LogLevel.FINE, Resources.STR_LOG_BYTES_PARAMETER, index); in setBytes()
212 ((java.sql.PreparedStatement)jdbcStatement).setBytes(index, x.clone()); in setBytes()
219 …public synchronized void setCharacterStream(int index, XInputStream x, int length) throws SQLExcep… in setCharacterStream() argument
221 logger.log(LogLevel.FINER, Resources.STR_LOG_CHARSTREAM_PARAMETER, index); in setCharacterStream()
228 … ((java.sql.PreparedStatement)jdbcStatement).setCharacterStream(index, inputStreamReader, length); in setCharacterStream()
235 public synchronized void setClob(int index, XClob x) throws SQLException { in setClob() argument
242 public synchronized void setDate(int index, Date x) throws SQLException { in setDate() argument
244 logger.log(LogLevel.FINE, Resources.STR_LOG_DATE_PARAMETER, index, x); in setDate()
247 index, java.sql.Date.valueOf(DBTypeConversion.toDateString(x))); in setDate()
254 public synchronized void setDouble(int index, double x) throws SQLException { in setDouble() argument
256 logger.log(LogLevel.FINE, Resources.STR_LOG_DOUBLE_PARAMETER, index, x); in setDouble()
258 ((java.sql.PreparedStatement)jdbcStatement).setDouble(index, x); in setDouble()
265 public synchronized void setFloat(int index, float x) throws SQLException { in setFloat() argument
267 logger.log(LogLevel.FINE, Resources.STR_LOG_FLOAT_PARAMETER, index, x); in setFloat()
269 ((java.sql.PreparedStatement)jdbcStatement).setFloat(index, x); in setFloat()
276 public synchronized void setInt(int index, int x) throws SQLException { in setInt() argument
278 logger.log(LogLevel.FINE, Resources.STR_LOG_INT_PARAMETER, index, x); in setInt()
280 ((java.sql.PreparedStatement)jdbcStatement).setInt(index, x); in setInt()
287 public synchronized void setLong(int index, long x) throws SQLException { in setLong() argument
289 logger.log(LogLevel.FINE, Resources.STR_LOG_LONG_PARAMETER, index, x); in setLong()
291 ((java.sql.PreparedStatement)jdbcStatement).setLong(index, x); in setLong()
298 public synchronized void setNull(int index, int sqlType) throws SQLException { in setNull() argument
300 logger.log(LogLevel.FINE, Resources.STR_LOG_NULL_PARAMETER, index, sqlType); in setNull()
302 ((java.sql.PreparedStatement)jdbcStatement).setNull(index, sqlType); in setNull()
309 public void setObject(int index, Object x) throws SQLException { in setObject() argument
310 if (!DbTools.setObject(this, index, x)) { in setObject()
312 Resources.STR_UNKNOWN_PARA_TYPE, "$position$", Integer.toString(index)); in setObject()
318 …public synchronized void setObjectNull(int index, int sqlType, String typeName) throws SQLExceptio… in setObjectNull() argument
320 logger.log(LogLevel.FINER, Resources.STR_LOG_OBJECT_NULL_PARAMETER, index); in setObjectNull()
322 ((java.sql.PreparedStatement)jdbcStatement).setObject(index, null); in setObjectNull()
329 …public synchronized void setObjectWithInfo(int index, Object x, int targetSqlType, int scale) thro… in setObjectWithInfo() argument
331 logger.log(LogLevel.FINER, Resources.STR_LOG_OBJECT_NULL_PARAMETER, index); in setObjectWithInfo()
347 … ((java.sql.PreparedStatement)jdbcStatement).setObject(index, bigDecimal, targetSqlType, scale); in setObjectWithInfo()
349 …((java.sql.PreparedStatement)jdbcStatement).setObject(index, AnyConverter.toString(x), targetSqlTy… in setObjectWithInfo()
357 public void setRef(int index, XRef x) throws SQLException { in setRef() argument
364 public synchronized void setShort(int index, short x) throws SQLException { in setShort() argument
366 logger.log(LogLevel.FINE, Resources.STR_LOG_SHORT_PARAMETER, index, x); in setShort()
368 ((java.sql.PreparedStatement)jdbcStatement).setShort(index, x); in setShort()
375 public synchronized void setString(int index, String x) throws SQLException { in setString() argument
377 logger.log(LogLevel.FINE, Resources.STR_LOG_STRING_PARAMETER, index, x); in setString()
379 ((java.sql.PreparedStatement)jdbcStatement).setString(index, x); in setString()
386 public synchronized void setTime(int index, Time x) throws SQLException { in setTime() argument
388 logger.log(LogLevel.FINE, Resources.STR_LOG_TIME_PARAMETER, index, x); in setTime()
391 index, java.sql.Time.valueOf(DBTypeConversion.toTimeString(x))); in setTime()
398 public synchronized void setTimestamp(int index, DateTime x) throws SQLException { in setTimestamp() argument
400 logger.log(LogLevel.FINE, Resources.STR_LOG_TIMESTAMP_PARAMETER, index, x); in setTimestamp()
403 index, java.sql.Timestamp.valueOf(DBTypeConversion.toDateTimeString(x))); in setTimestamp()