Searched refs:stmt (Results 1 - 2 of 2) sorted by relevance

/opengrok-jel/test/org/opensolaris/opengrok/history/
H A DJDBCHistoryCacheTest.java115 Statement stmt = null;
122 stmt = conn.createStatement();
123 stmt.executeUpdate("SET SCHEMA SYS");
124 rs = stmt.executeQuery("SELECT T.TABLEID, T.TABLENAME, " +
151 if (stmt != null) stmt.close();
/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DJDBCHistoryCache.java346 final Statement stmt = conn.createStatement();
348 initDB(stmt);
350 stmt.close();
1107 * @param stmt a statement that has just inserted a row
1112 private static Integer getGeneratedIntKey(Statement stmt) throws SQLException { argument
1113 ResultSet keys = stmt.getGeneratedKeys();

Completed in 12 milliseconds