Lines Matching refs:to

3  * Licensed to the Apache Software Foundation (ASF) under one
7 * to you under the Apache License, Version 2.0 (the
13 * Unless required by applicable law or agreed to in writing,
90 /** sets the designated parameter to SQL NULL.
96 /** sets the designated parameter to SQL NULL. This version of setNull should
112 this method may be used to set a null parameter of any JDBC type.
119 the type of the column to set to <NULL/>
130 /** sets the designated parameter to a boolean value. The driver converts this
131 to a SQL BIT value when it sends it to the database.
143 /** sets the designated parameter to a byte value. The driver converts this
144 to a SQL TINYINT value when it sends it to the database.
155 /** sets the designated parameter to a short value. The driver converts this
156 to a SQL SMALLINT value when it sends it to the database.
167 /** sets the designated parameter to a long value. The driver converts this
168 to a SQL INTEGER value when it sends it to the database.
179 /** sets the designated parameter to a hyper value. The driver converts this
180 to a SQL BIGINT value when it sends it to the database.
191 /** sets the designated parameter to a float value. The driver converts this
192 to a SQL FLOAT value when it sends it to the database.
203 /** sets the designated parameter to a double value. The driver converts this
204 to a SQL DOUBLE value when it sends it to the database.
215 /** sets the designated parameter to a string value. The driver converts this
216 to a SQL VARCHAR or LONGVARCHAR value (depending on the argument's
217 size relative to the driver's limits on VARCHARs) when it sends
218 it to the database.
229 /** sets the designated parameter to a sequence of bytes. The driver converts
230 this to a SQL VARBINARY or LONGVARBINARY (depending on the
231 argument's size relative to the driver's limits on VARBINARYs)
232 when it sends it to the database.
244 /** sets the designated parameter to a date value. The driver converts this
245 to a SQL DATE value when it sends it to the database.
257 /** sets the designated parameter to a time value. The driver converts this
258 to a SQL TIME value when it sends it to the database.
270 /** sets the designated parameter to a datetime value. The driver
271 converts this to a SQL TIMESTAMP value when it sends it to the
284 /** sets the designated parameter to the given input stream, which will have
286 When a very large binary value is input to a LONGVARBINARY or LONGVARCHAR
287 parameter, it may be more practical to send it via an
304 /** sets the designated parameter to the given input stream, which will have
306 When a very large binary value is input to a LONGVARCHAR
307 parameter, it may be more practical to send it via a
327 <p>The given object will be converted to the targetSqlType
328 before being sent to the database.
330 the SDBC driver should call its method <code>writeSQL</code> to write it
331 to the SQL data stream.
333 Clob, Struct, or Array, the driver should pass it to the database as a
336 <p>Note that this method may be used to pass database-specific
354 <p>The given object will be converted to the targetSqlType
355 before being sent to the database.
357 the SDBC driver should call its method <code>writeSQL</code> to write it
358 to the SQL data stream.
360 Clob, Struct, or Array, the driver should pass it to the database as a
363 <p>Note that this method may be used to pass database-specific
373 ) to be sent to the database. The scale argument may further qualify this type.
438 previous value. However, in some cases it is useful to immediately