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

/frameworks/support/persistence/db/src/main/java/android/arch/persistence/db/
H A DSupportSQLiteDatabase.java46 SupportSQLiteStatement compileStatement(String sql); method in interface:SupportSQLiteDatabase
/frameworks/support/persistence/db-framework/src/main/java/android/arch/persistence/db/framework/
H A DFrameworkSQLiteDatabase.java61 public SupportSQLiteStatement compileStatement(String sql) { method in class:FrameworkSQLiteDatabase
62 return new FrameworkSQLiteStatement(mDelegate.compileStatement(sql));
194 SupportSQLiteStatement statement = compileStatement(query);
233 SupportSQLiteStatement stmt = compileStatement(sql.toString());
/frameworks/support/room/runtime/src/main/java/android/arch/persistence/room/
H A DRoomDatabase.java195 * Wrapper for {@link SupportSQLiteDatabase#compileStatement(String)}.
200 public SupportSQLiteStatement compileStatement(String sql) { method in class:RoomDatabase
202 return mOpenHelper.getWritableDatabase().compileStatement(sql);
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabase.java1067 public SQLiteStatement compileStatement(String sql) throws SQLException { method in class:SQLiteDatabase
2238 prog = compileStatement("PRAGMA " + p.first + ".integrity_check(1);");

Completed in 132 milliseconds