我正在开发一个Android应用程序,我需要一次性在数据库中输入多行, 我的用户界面中有18行4列是编辑文本,只需点击一下按钮即可输入数据库中的所有数据,我该怎么做? 这是我生成一行的代码
public void addRow(String rowStringOne, String rowStringTwo)
{
// this is a key value pair holder used by android's SQLite functions
ContentValues values = new ContentValues();
values.put(TABLE_ROW_ONE, rowStringOne);
values.put(TABLE_ROW_TWO, rowStringTwo);
// ask the database object to insert the new data
try{db.insert(TABLE_NAME, null, values);}
catch(Exception e)
{
Log.e("DB ERROR", e.toString());
e.printStackTrace();
}
}