Home
last modified time | relevance | path

Searched refs:toDb (Results 1 – 1 of 1) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/provider/
DLauncherDbUtils.java122 public static void copyTable(SQLiteDatabase fromDb, String fromTable, SQLiteDatabase toDb, in copyTable() argument
126 dropTable(toDb, toTable); in copyTable()
127 Favorites.addTableToDb(toDb, userSerial, false, toTable); in copyTable()
128 if (fromDb != toDb) { in copyTable()
129 toDb.execSQL("ATTACH DATABASE '" + fromDb.getPath() + "' AS from_db"); in copyTable()
130 toDb.execSQL( in copyTable()
132 toDb.execSQL("DETACH DATABASE 'from_db'"); in copyTable()
134 toDb.execSQL("INSERT INTO " + toTable + " SELECT * FROM " + fromTable); in copyTable()