Searched refs:insertStmt (Results 1 – 1 of 1) sorted by relevance
1916 SQLiteStatement insertStmt = null; in moveSettingsToNewTable() local1921 insertStmt = db.compileStatement("INSERT " in moveSettingsToNewTable()1928 insertStmt.bindString(1, setting); in moveSettingsToNewTable()1929 insertStmt.execute(); in moveSettingsToNewTable()1937 if (insertStmt != null) { in moveSettingsToNewTable()1938 insertStmt.close(); in moveSettingsToNewTable()1952 SQLiteStatement insertStmt = null; in movePrefixedSettingsToNewTable() local1957 insertStmt = db.compileStatement("INSERT INTO " + destTable in movePrefixedSettingsToNewTable()1964 insertStmt.bindLong(1, prefix.length() + 1); in movePrefixedSettingsToNewTable()1965 insertStmt.bindString(2, prefix); in movePrefixedSettingsToNewTable()[all …]