Searched defs:stmt (Results 1 - 3 of 3) sorted by relevance

/libcore/luni/src/test/java/libcore/sqlite/
H A DAbstractSqlTest.java133 * @param stmt the statement to be used for the selection of the data
138 private void assertAllFromTbl1(Statement stmt, String[] ones, short[] twos) argument
140 ResultSet rs = stmt.executeQuery("select * from tbl1");
194 * @param stmt the statement to be used to update the data
199 private void updateOnes(Statement stmt, String[] ones_updated, short[] twos) argument
202 stmt.execute("UPDATE tbl1 SET one = '" + ones_updated[i]
H A DOldDatabaseTest.java814 String stmt = "create table TEST (res double);";
819 db.exec(stmt,t);
821 assertEquals(t.getTrace(),stmt);
825 db.exec(stmt,t);
861 fail("stmt should not be prepared");
863 assertEquals("stmt already closed", e.getMessage());
972 int stmt = 0;
974 ++stmt;
975 if (stmt > inputVal) {
1025 public void trace(String stmt) { argument
[all...]
/libcore/luni/src/test/java/libcore/java/sql/
H A DOldStatementTest.java1296 Statement stmt; field in class:OldStatementTest.CancelThread
1298 this.stmt = aSt;
1312 Logger.global.info("*Cancel* thread, about to do stmt.cancel()");
1313 stmt.cancel();
1314 Logger.global.info("*Cancel* thread, stmt.cancel() done");
1325 PreparedStatement stmt; field in class:OldStatementTest.InsertThread
1327 this.stmt = aSt;
1342 stmt.execute();
1343 stmt.execute();

Completed in 170 milliseconds