如何有效地插入这些?
使用交易:
db.beginTransaction(); try { for(;;) { db.execSQL(...); } db.setTransactionSuccessful(); } finally { db.endTransaction(); }