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

/libcore/luni/src/test/java/tests/support/
H A DDatabaseCreator.java48 public static final String PARENT_TABLE = "test_names"; field in class:DatabaseCreator
101 + PARENT_TABLE + "(id INTEGER NOT NULL, "
108 + PARENT_TABLE + " (id) " + "ON DELETE RESTRICT "
115 + PARENT_TABLE + " (id) " + "ON DELETE CASCADE "
147 public static final String DROP_TABLE_PARENT = "DROP TABLE " + PARENT_TABLE;
259 .execute("INSERT INTO " + PARENT_TABLE + " VALUES(1, 'test1')");
260 statement.execute("INSERT INTO " + PARENT_TABLE + " VALUES(2,'test2')");
262 .execute("INSERT INTO " + PARENT_TABLE + " VALUES(3, 'test3')");

Completed in 804 milliseconds