Searched refs:insertStmt (Results 1 – 1 of 1) sorted by relevance
1933 SQLiteStatement insertStmt = null; in moveSettingsToNewTable() local1938 insertStmt = db.compileStatement("INSERT " in moveSettingsToNewTable()1945 insertStmt.bindString(1, setting); in moveSettingsToNewTable()1946 insertStmt.execute(); in moveSettingsToNewTable()1954 if (insertStmt != null) { in moveSettingsToNewTable()1955 insertStmt.close(); in moveSettingsToNewTable()1969 SQLiteStatement insertStmt = null; in movePrefixedSettingsToNewTable() local1974 insertStmt = db.compileStatement("INSERT INTO " + destTable in movePrefixedSettingsToNewTable()1981 insertStmt.bindLong(1, prefix.length() + 1); in movePrefixedSettingsToNewTable()1982 insertStmt.bindString(2, prefix); in movePrefixedSettingsToNewTable()[all …]