Searched refs:compileStatement (Results 1 – 9 of 9) sorted by relevance
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/ |
D | DatabaseHelper.java | 433 stmt = db.compileStatement("INSERT INTO system(name,value)" in onUpgrade() 464 stmt = db.compileStatement("INSERT OR IGNORE INTO secure(name,value)" in onUpgrade() 507 stmt = db.compileStatement("INSERT OR IGNORE INTO system(name,value)" in onUpgrade() 550 stmt = db.compileStatement("INSERT INTO system(name,value)" in onUpgrade() 570 stmt = db.compileStatement("INSERT INTO system(name,value)" in onUpgrade() 588 stmt = db.compileStatement("INSERT INTO system(name,value)" in onUpgrade() 607 stmt = db.compileStatement("INSERT OR IGNORE INTO system(name,value)" in onUpgrade() 695 stmt = db.compileStatement("INSERT INTO system(name,value)" in onUpgrade() 736 stmt = db.compileStatement("INSERT INTO system(name,value)" in onUpgrade() 781 stmt = db.compileStatement("INSERT INTO system(name,value)" in onUpgrade() [all …]
|
/frameworks/base/core/tests/coretests/src/android/database/ |
D | DatabaseStatementTest.java | 82 SQLiteStatement statement = mDatabase.compileStatement("DELETE FROM test"); in testExecuteStatement() 96 mDatabase.compileStatement("SELECT num FROM test WHERE str = ?"); in testSimpleQuery() 98 mDatabase.compileStatement("SELECT str FROM test WHERE num = ?"); in testSimpleQuery() 131 SQLiteStatement statement = mDatabase.compileStatement("INSERT INTO test (num) VALUES (?)"); in testStatementLongBinding() 153 SQLiteStatement statement = mDatabase.compileStatement("INSERT INTO test (num) VALUES (?)"); in testStatementStringBinding() 175 SQLiteStatement statement = mDatabase.compileStatement("INSERT INTO test (num) VALUES (?)"); in testStatementClearBindings() 222 mDatabase.compileStatement("INSERT INTO test (num, str) VALUES (?, ?)"); in testStatementMultipleBindings() 285 mDatabase.compileStatement("INSERT INTO test (num, str) VALUES (?, ?)"); in testStatementMultiThreaded() 299 SQLiteStatement statement = mDatabase.compileStatement("INSERT INTO test (num) VALUES (?)"); in testStatementConstraint()
|
/frameworks/base/core/java/android/database/ |
D | DatabaseUtils.java | 921 SQLiteStatement prog = db.compileStatement(query); in longForQuery() 943 SQLiteStatement prog = db.compileStatement(query); in stringForQuery() 968 SQLiteStatement prog = db.compileStatement(query); in blobFileDescriptorForQuery() 1179 mReplaceStatement = mDb.compileStatement(replaceSQL); in getStatement() 1185 mInsertStatement = mDb.compileStatement(mInsertSQL); in getStatement()
|
/frameworks/base/core/java/android/database/sqlite/ |
D | SQLiteDatabase.java | 1118 public SQLiteStatement compileStatement(String sql) throws SQLException { in compileStatement() method in SQLiteDatabase 2344 prog = compileStatement("PRAGMA " + p.first + ".integrity_check(1);"); in isDatabaseIntegrityOk()
|
/frameworks/base/services/core/java/com/android/server/accounts/ |
D | AccountsDb.java | 1328 return db.compileStatement(sql); in compileSqlStatementForLogging()
|
/frameworks/base/config/ |
D | boot-image-profile.txt | 5281 HSPLandroid/database/sqlite/SQLiteDatabase;->compileStatement(Ljava/lang/String;)Landroid/database/…
|
/frameworks/opt/setupwizard/tools/docs/ |
D | android-22.txt | 9797 …method public android.database.sqlite.SQLiteStatement compileStatement(java.lang.String) throws an…
|
/frameworks/base/non-updatable-api/ |
D | current.txt | 12929 …method public android.database.sqlite.SQLiteStatement compileStatement(String) throws android.data…
|
/frameworks/base/api/ |
D | current.txt | 12929 …method public android.database.sqlite.SQLiteStatement compileStatement(String) throws android.data…
|