Lines Matching refs:a

9  * with the License.  You may obtain a copy of the License at
74 should be used with a target SQL type.
77 Example of setting a parameter;
105 a NULL user-defined or REF parameter. In the case of a user-named type
106 the name is the type name of the parameter itself. For a REF
108 a SDBC driver does not need the type code or type name information,
112 this method may be used to set a null parameter of any JDBC type.
113 If the parameter does not have a user-named or REF type, the given
123 if a database access error occurs.
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.
137 if a database access error occurs.
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.
150 if a database access error occurs.
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.
162 if a database access error occurs.
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.
174 if a database access error occurs.
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.
186 if a database access error occurs.
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.
198 if a database access error occurs.
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.
210 if a database access error occurs.
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
224 if a database access error occurs.
229 /** sets the designated parameter to a sequence of bytes. The driver converts
230 this to a SQL VARBINARY or LONGVARBINARY (depending on the
238 if a database access error occurs.
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.
251 if a database access error occurs.
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.
264 if a database access error occurs.
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
278 if a database access error occurs.
286 When a very large binary value is input to a LONGVARBINARY or LONGVARCHAR
297 if a database access error occurs.
306 When a very large binary value is input to a LONGVARCHAR
307 parameter, it may be more practical to send it via a
317 if a database access error occurs.
324 /** sets the value of a parameter using an any.
329 If the object has a custom mapping (is of a class implementing SQLData),
332 If, on the other hand, the object is of a service implementing Ref, Blob,
333 Clob, Struct, or Array, the driver should pass it to the database as a
344 if a database access error occurs.
350 /** set a value from the Datatype ANY for a parameter.
356 If the object has a custom mapping (is of a class implementing SQLData),
359 If, on the other hand, the object is of a service implementing Ref, Blob,
360 Clob, Struct, or Array, the driver should pass it to the database as a
381 if a database access error occurs.
388 /** sets a REF(<structured-type>) parameter.
394 if a database access error occurs.
399 /** sets a BLOB parameter.
405 if a database access error occurs.
410 /** sets a CLOB parameter.
416 if a database access error occurs.
427 if a database access error occurs.
436 <p>In general, parameter values remain in force for repeated use of a
437 Statement. Setting a parameter value automatically clears its
443 if a database access error occurs.