Searched refs:dbFile (Results 1 - 10 of 10) sorted by relevance

/libcore/luni/src/test/java/libcore/sqlite/
H A DOldJDBCDriverFunctionalTest.java28 private File dbFile = null; field in class:OldJDBCDriverFunctionalTest
33 dbFile.delete();
42 dbFile = File.createTempFile("JDBCDriverFunctionalTest", ".db", tmpDir);
46 dbFile.deleteOnExit();
51 connectionURL = "jdbc:sqlite:/" + dbFile.getPath();
H A DOldSQLiteTest.java30 public static File dbFile = null; field in class:OldSQLiteTest
37 dbFile = File.createTempFile("sqliteTest", ".db", tmpDir);
38 dbFile.deleteOnExit();
45 if (!dbFile.exists()) {
48 conn = DriverManager.getConnection("jdbc:sqlite:/" + dbFile.getPath());
H A DOldExceptionTest.java33 db.open(dbFile.getName(), 0);
H A DOldBlobTest.java40 db.open(dbFile.getPath(), 0);
86 Blob blob = db.open_blob(dbFile.getPath(), "B", "val", 1, true);
H A DOldDatabaseTest.java83 db.open(dbFile.getPath(), 0);
92 System.err.println("Error closing DB " + dbFile.getPath());
104 db2.open(dbFile.getPath(), 0);
106 db.open(dbFile.getPath(), 0);
108 db2.open(dbFile.getPath(), 0);
114 db.open(dbFile.getPath(), 0);
117 db2.open(dbFile.getPath(), 0);
118 db2.open(dbFile.getPath(), 0);
155 db.open(dbFile.getPath(),0);
175 db.open(dbFile
[all...]
H A DOldFunctionContextTest.java37 db.open(dbFile.getPath(), 0);
H A DOldStmtTest.java80 db.open(dbFile.getPath(), 0);
/libcore/luni/src/test/java/libcore/java/sql/
H A DOldSQLTest.java35 protected File dbFile; field in class:OldSQLTest
41 dbFile = File.createTempFile("sqliteTest", ".db", tmpDir);
42 dbFile.deleteOnExit();
48 conn = DriverManager.getConnection("jdbc:sqlite:/" + dbFile.getPath());
H A DOldConnectionTest.java2178 conn = DriverManager.getConnection("jdbc:sqlite:/" + dbFile.getPath());
/libcore/luni/src/test/java/tests/support/
H A DSupport_SQL.java47 private static File dbFile = null; field in class:Support_SQL
59 dbFile = File.createTempFile("sqliteTest", ".db", tmpDir);
60 dbFile.deleteOnExit();
67 sqlUrl = "jdbc:sqlite:/" + dbFile.getPath();
116 return dbFile.getPath();

Completed in 300 milliseconds