我试图将数据插入数据库 SQLLite,但数据没有进入数据库:
ContentValues cv = new ContentValues();
cv.put("username", cust.getUsername());
cv.put("password", cust.getPassword());
cv.put("name", cust.getCustomername());
long id = mDb.insert("user", null, cv);
Log.v(TAG, Long.toString(id));
Log.e(TAG, "New Customer Created");
return true;
id 返回 5,知道为什么吗?(几次插入 id return 7 现在。)
我应该在这里发布什么其他代码?数据库连接应该没问题,因为我能够成功登录。