我想从单个插入查询中插入两个不同的sqlite表的不同值。任何人都可以帮助我...........
答案 0 :(得分:1)
为什么你不能用两行呢?程序将陆续执行。
您可以执行以下操作
dbHelper = new RdmsDbAdapter(SDCardVideoActivity.this);
dbHelper.open();
dbHelper.executeSQL("CREATE TABLE IF NOT EXISTS videos(urls text)");
dbHelper.executeSQL("insert into videos values ('"+outputfilepathVideo+"', '"+IncidentFormActivity.incident_id+"')");
dbHelper.executeSQL("CREATE TABLE IF NOT EXISTS audios(urls text)");
dbHelper.executeSQL("insert into audios values ('"+outputfilepathAudio+"', '"+IncidentFormActivity.incident_id+"')");
dbHelper.close();
了解如何使用Android here处理sqlite
。