Searched refs:insertStmt (Results 1 – 1 of 1) sorted by relevance
1876 SQLiteStatement insertStmt = null; in moveSettingsToNewTable() local1881 insertStmt = db.compileStatement("INSERT " in moveSettingsToNewTable()1888 insertStmt.bindString(1, setting); in moveSettingsToNewTable()1889 insertStmt.execute(); in moveSettingsToNewTable()1897 if (insertStmt != null) { in moveSettingsToNewTable()1898 insertStmt.close(); in moveSettingsToNewTable()1912 SQLiteStatement insertStmt = null; in movePrefixedSettingsToNewTable() local1917 insertStmt = db.compileStatement("INSERT INTO " + destTable in movePrefixedSettingsToNewTable()1924 insertStmt.bindLong(1, prefix.length() + 1); in movePrefixedSettingsToNewTable()1925 insertStmt.bindString(2, prefix); in movePrefixedSettingsToNewTable()[all …]