当我第一次运行应用程序时,我想创建一个表并在表中输入一些行。为此,我编写了这段代码,它运行良好:
//Creating the table
db.execSQL(MRM_BOOKING_LOGIN_TABLE_CREATE);
//Setting the values in the table
ContentValues contentValuesLogin = new ContentValues();
contentValuesLogin.put(USER_ID, "asdf");
contentValuesLogin.put(PASSWORD, "1234");
//Inserting a row in the table
db.insert(MRM_BOOKING_LOGIN_TABLE, null, contentValuesLogin);
但我想在表中输入至少 15 到 20 行。每次插入一行后,我都会清除 ContentValues 对象(或创建另一个 ContentValues 对象)并在新创建的表中输入另一行,这是一个好主意吗?这样,代码行数也会增加很多。我相信可能还有其他更好的替代方法可以做到这一点。请建议
问候,