Lines Matching refs:a

9  * with the License.  You may obtain a copy of the License at
49 /** represents a connection (session) with a specific
50 database. Within the context of a Connection, SQL statements are
70 /** creates a new
78 is executed many times, it is more efficient to use a
91 a new Statement object
93 if a database access error occurs.
98 /** creates a
105 pre-compiled and stored in a PreparedStatement object. This
136 a SQL statement that may contain one or more '?' IN parameter placeholders
138 a new PreparedStatement object containing the pre-compiled statement
140 if a database access error occurs.
145 /** creates a
153 parameters, and methods for executing the call to a stored procedure.
173 a SQL statement that may contain one or more '?' IN parameter placeholders
175 a new PreparedStatement object containing the pre-compiled statement
177 if a database access error occurs.
188 a SQL statement that may contain one or more '?' parameter placeholders
192 if a database access error occurs.
201 If a connection is in auto-commit mode, then all its SQL
204 transactions that are terminated by a call to either
215 statements returning a ResultSet, the statement completes when
217 ResultSet has been closed. In advanced cases, a single
226 if a database access error occurs.
236 if a database access error occurs.
249 if a database access error occurs.
261 if a database access error occurs.
268 /** tests to see if a connection is closed.
276 anymore. Certain fatal errors also result in a closed Connection.
282 if a database access error occurs.
294 information is made available through a DatabaseMetaData
299 a DatabaseMetaData object for this Connection.
301 if a database access error occurs.
306 /** puts this connection in read-only mode as a hint to enable
315 middle of a transaction. Calling setReadOnly with
324 if a database access error occurs.
333 if a database access error occurs.
338 /** sets a catalog name in order to select
339 a subspace of this Connection's database in which to work.
345 if a database access error occurs.
354 if a database access error occurs.
372 in the middle of a transaction.
377 if a database access error occurs.
388 if a database access error occurs.
405 if a database access error occurs.
416 Only if the driver supports custom type mapping is the setting of a map allowed.
422 if a database access error occurs.