Searched refs:compileStatement (Results 1 – 9 of 9) sorted by relevance
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/ |
D | DatabaseHelper.java | 437 stmt = db.compileStatement("INSERT INTO system(name,value)" in onUpgrade() 482 stmt = db.compileStatement("INSERT OR IGNORE INTO secure(name,value)" in onUpgrade() 525 stmt = db.compileStatement("INSERT OR IGNORE INTO system(name,value)" in onUpgrade() 568 stmt = db.compileStatement("INSERT INTO system(name,value)" in onUpgrade() 588 stmt = db.compileStatement("INSERT INTO system(name,value)" in onUpgrade() 606 stmt = db.compileStatement("INSERT INTO system(name,value)" in onUpgrade() 625 stmt = db.compileStatement("INSERT OR IGNORE INTO system(name,value)" in onUpgrade() 713 stmt = db.compileStatement("INSERT INTO system(name,value)" in onUpgrade() 754 stmt = db.compileStatement("INSERT INTO system(name,value)" in onUpgrade() 799 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 | 831 SQLiteStatement prog = db.compileStatement(query); in longForQuery() 853 SQLiteStatement prog = db.compileStatement(query); in stringForQuery() 878 SQLiteStatement prog = db.compileStatement(query); in blobFileDescriptorForQuery() 1089 mReplaceStatement = mDb.compileStatement(replaceSQL); in getStatement() 1095 mInsertStatement = mDb.compileStatement(mInsertSQL); in getStatement()
|
/frameworks/base/core/java/android/database/sqlite/ |
D | SQLiteDatabase.java | 993 public SQLiteStatement compileStatement(String sql) throws SQLException { in compileStatement() method in SQLiteDatabase 2163 prog = compileStatement("PRAGMA " + p.first + ".integrity_check(1);"); in isDatabaseIntegrityOk()
|
/frameworks/base/services/core/java/com/android/server/accounts/ |
D | AccountManagerService.java | 4647 userAccount.statementForLogging = db.compileStatement(sql);
|
/frameworks/opt/setupwizard/tools/docs/ |
D | android-22.txt | 9797 …method public android.database.sqlite.SQLiteStatement compileStatement(java.lang.String) throws an…
|
/frameworks/base/api/ |
D | current.txt | 10927 …method public android.database.sqlite.SQLiteStatement compileStatement(java.lang.String) throws an…
|
D | system-current.txt | 11375 …method public android.database.sqlite.SQLiteStatement compileStatement(java.lang.String) throws an…
|
D | test-current.txt | 10945 …method public android.database.sqlite.SQLiteStatement compileStatement(java.lang.String) throws an…
|