HomeSort by relevance Sort by last modified time
    Searched full:secondstmt (Results 1 - 2 of 2) sorted by null

  /frameworks/base/core/tests/coretests/src/android/database/sqlite/
AbstractJDBCDriverTest.java 42 Statement secondStmt = null;
56 secondStmt = secondConnection.createStatement();
59 updateSelectCommitSelectTest(firstStmt, secondStmt, ones, onesUpdated, twos);
60 updateSelectRollbackSelectTest(firstStmt, secondStmt, onesUpdated, ones, twos);
62 closeConnections(firstConnection, secondConnection, dbFile, firstStmt, secondStmt);
71 File dbFile, Statement firstStmt, Statement secondStmt) {
95 if (secondStmt != null) {
96 secondStmt.close();
152 * @param secondStmt the statement that should be used to check if the commit works
159 Statement secondStmt, String[] ones, String[] onesUpdated
    [all...]
  /dalvik/libcore/sql/src/test/java/tests/SQLite/
AbstractSqlTest.java 61 private Statement secondStmt;
105 secondStmt = secondConnection.createStatement();
116 secondStmt.close();
192 assertAllFromTbl1(secondStmt, ones, twos);
194 assertAllFromTbl1(secondStmt, ones_updated, twos);
218 assertAllFromTbl1(secondStmt, ones, twos);
220 assertAllFromTbl1(secondStmt, ones, twos);

Completed in 24 milliseconds