which is the best way to insert 5000 products(name and price) in sqlite? I try not to use 5000 inserts one below the other like that:
db.execSQL("INSERT INTO " +tableprod+" (id_prod, name) VALUES (7791234567898, 'chocolate')");
Should I use json and gson and don't use sqlite?Thanks.