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.java85 public static void copyTable(SQLiteDatabase fromDb, String fromTable, SQLiteDatabase toDb, in copyTable() argument
89 dropTable(toDb, toTable); in copyTable()
90 Favorites.addTableToDb(toDb, userSerial, false, toTable); in copyTable()
91 if (fromDb != toDb) { in copyTable()
92 toDb.execSQL("ATTACH DATABASE '" + fromDb.getPath() + "' AS from_db"); in copyTable()
93 toDb.execSQL( in copyTable()
96 toDb.execSQL("DETACH DATABASE 'from_db'"); in copyTable()
98 toDb.execSQL("INSERT INTO " + toTable + " SELECT " + getColumns(userSerial) + " FROM " in copyTable()