Lines Matching refs:x

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
170 int bytesRead = x.readBytes(bytesReference, length); 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
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
225 int bytesRead = x.readBytes(bytesReference, 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()
309 public void setObject(int index, Object x) throws SQLException { in setObject() argument
310 if (!DbTools.setObject(this, index, x)) { in setObject()
329 …public synchronized void setObjectWithInfo(int index, Object x, int targetSqlType, int scale) thro… in setObjectWithInfo() argument
335 if (AnyConverter.isDouble(x)) { in setObjectWithInfo()
336 bigDecimal = new BigDecimal(AnyConverter.toDouble(x)); in setObjectWithInfo()
339 rowSetValue.fill(x); in setObjectWithInfo()
349 …sql.PreparedStatement)jdbcStatement).setObject(index, AnyConverter.toString(x), targetSqlType, sca… 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()