Searched refs:insertStmt (Results 1 – 1 of 1) sorted by relevance
1934 SQLiteStatement insertStmt = null; in moveSettingsToNewTable() local1939 insertStmt = db.compileStatement("INSERT " in moveSettingsToNewTable()1946 insertStmt.bindString(1, setting); in moveSettingsToNewTable()1947 insertStmt.execute(); in moveSettingsToNewTable()1955 if (insertStmt != null) { in moveSettingsToNewTable()1956 insertStmt.close(); in moveSettingsToNewTable()1970 SQLiteStatement insertStmt = null; in movePrefixedSettingsToNewTable() local1975 insertStmt = db.compileStatement("INSERT INTO " + destTable in movePrefixedSettingsToNewTable()1982 insertStmt.bindLong(1, prefix.length() + 1); in movePrefixedSettingsToNewTable()1983 insertStmt.bindString(2, prefix); in movePrefixedSettingsToNewTable()[all …]