Lines Matching refs:sql

75     private java.sql.Driver driverObject;
76 private java.sql.Connection connection;
99 } catch (java.sql.SQLException sqlException) { in postDisposing()
140 } catch (java.sql.SQLException sqlException) { in clearWarnings()
149 java.sql.SQLWarning javaWarning = connection.getWarnings(); in getWarnings()
160 } catch (java.sql.SQLException sqlException) { in getWarnings()
171 } catch (java.sql.SQLException sqlException) { in commit()
190 } catch (java.sql.SQLException sqlException) { in getAutoCommit()
205 } catch (java.sql.SQLException sqlException) { in getCatalog()
215 } catch (java.sql.SQLException sqlException) { in getMetaData()
225 } catch (java.sql.SQLException sqlException) { in getTransactionIsolation()
240 } catch (java.sql.SQLException sqlException) { in isClosed()
250 } catch (java.sql.SQLException sqlException) { in isReadOnly()
256 public synchronized String nativeSQL(String sql) throws SQLException { in nativeSQL() argument
259 String ret = connection.nativeSQL(sql); in nativeSQL()
264 logger.log(LogLevel.FINER, Resources.STR_LOG_NATIVE_SQL, sql, ret); in nativeSQL()
266 } catch (java.sql.SQLException sqlException) { in nativeSQL()
272 public synchronized XPreparedStatement prepareCall(String sql) throws SQLException { in prepareCall() argument
274 logger.log(LogLevel.FINE, Resources.STR_LOG_PREPARE_CALL, sql); in prepareCall()
275 String sqlStatement = transformPreparedStatement(sql); in prepareCall()
283 public synchronized XPreparedStatement prepareStatement(String sql) throws SQLException { in prepareStatement() argument
285 logger.log(LogLevel.FINE, Resources.STR_LOG_PREPARE_STATEMENT, sql); in prepareStatement()
286 String sqlStatement = transformPreparedStatement(sql); in prepareStatement()
297 } catch (java.sql.SQLException sqlException) { in rollback()
306 } catch (java.sql.SQLException sqlException) { in setAutoCommit()
315 } catch (java.sql.SQLException sqlException) { in setCatalog()
324 } catch (java.sql.SQLException sqlException) { in setReadOnly()
334 } catch (java.sql.SQLException sqlException) { in setTransactionIsolation()
390 } catch (java.sql.SQLException sqlException) { in construct()
445 driverObject = (java.sql.Driver) driverClass.newInstance(); in loadDriverFromProperties()
525 private String transformPreparedStatement(String sql) throws SQLException { in transformPreparedStatement() argument
535 return stringSubstitution.substituteVariables(sql, true); in transformPreparedStatement()
547 public java.sql.Connection getJDBCConnection() { in getJDBCConnection()
559 public String getTransformedGeneratedStatement(String sql) { in getTransformedGeneratedStatement() argument
560 return autoRetrievingBase.getTransformedGeneratedStatement(sql); in getTransformedGeneratedStatement()