今天学习了安卓数据库连接,最后可以连上数据库,但是没有数据始终传不上去
MyDbhelper myDbhelper = new MyDbhelper(SecondActivity.this, "Data.db", null, 666); db = myDbhelper.getWritableDatabase(); ContentValues contentValues = new ContentValues(); contentValues.put("Id", SId); contentValues.put("pwd", Spwd); contentValues.put("name", Sname); contentValues.put("banji", Sbanji); contentValues.put("phone", Sphone); long a=db.insert("user", null, contentValues); db.close();
最后找了半天发现这个db.close()忘了写
真想捶我
标签:总结,每日,db,3.06,myDbhelper,contentValues,put,close,null From: https://www.cnblogs.com/yangkaiwen/p/17189299.html