使用SQLiteOpenHelper和单例模式 *** 作SQLite数据库

使用SQLiteOpenHelper和单例模式 *** 作SQLite数据库,第1张

概述在前文中总结了SQLite数据库的基本用法,本文中将使用SQLiteOpenHelper和单例模式 *** 作数据库。SQLiteOpenHelper是Android提供的一个管理数据库的工具类,可以用于管理数据库的创建和版本更新。一般的用法是创建它的子类,并扩展它的onCreate()和onUpgrade方法。 SQLiteOpenHelper包含如下方法: 同上文一样,数据仍是手动写死的,实际情况应

在前文中总结了sqlite数据库的基本用法,本文中将使用sqliteOpenHelper和单例模式来 *** 作数据库。sqliteOpenHelper是AndroID提供的一个管理数据库的工具类,可以用于管理数据库的创建和版本更新。一般的用法是创建它的子类,并扩展它的onCreate()和onUpgrade方法。

sqliteOpenHelper包含如下方法:

同上文一样,数据仍是手动写死的,实际情况应该根据业务需求从界面或其他地方获取,实例代码如下,关键是后面两个类:

Activity:

[java] view plain copy packagecom.lovo.activity; importandroID.app.Activity; importandroID.database.Cursor; importandroID.os.Bundle; importandroID.vIEw.VIEw; importandroID.Widget.TextVIEw; importcom.lovo.dao.StuDao; importcom.lovo.databasetest.R; publicclassDatabaseTestActivityextendsActivity{ privateTextVIEwshow; privateStuDaodao; @OverrIDe protectedvoIDonCreate(BundlesavedInstanceState){ super.onCreate(savedInstanceState); setContentVIEw(R.layout.main); show=(TextVIEw)findVIEwByID(R.ID.main_tv_show); dao=newStuDao(this); } voIDclick(VIEwv){ switch(v.getID()){ caseR.ID.main_btn_insert: //添加数据 dao.insert("张三",24,"男"); break; caseR.ID.main_btn_delete: //根据指定ID删除数据 dao.del(2); caseR.ID.main_btn_update: //根据指定ID修改数据 dao.update("王斌",0); background-color:inherit">34,"男",0); background-color:inherit">1); caseR.ID.main_btn_find: StringBuffersb=newStringBuffer(); //查询所有数据 Cursorcursor=dao.findAll(); //根据指定ID查询数据 //Cursorcursor=dao.findByID(1); while(cursor.movetoNext()){ intID=cursor.getInt(cursor.getColumnIndex("_ID")); Stringname=cursor.getString(cursor.getColumnIndex("s_name")); Stringsex=cursor.getString(cursor.getColumnIndex("s_sex")); intage=cursor.getInt(cursor.getColumnIndex("s_age")); sb.append(ID+""+name+""+sex+""+age+"\n"); } show.setText(sb.toString()); break; }

布局XML:

[HTML] copy <linearLayoutxmlns:androID="http://schemas.androID.com/apk/res/androID" androID:layout_wIDth="match_parent" androID:layout_height="match_parent" androID:orIEntation="vertical"> button androID:ID="@+ID/main_btn_insert" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:onClick="click" androID:text="添加"/> button androID:ID="@+ID/main_btn_delete" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:onClick="click" androID:text="删除"/> androID:ID="@+ID/main_btn_update" androID:text="修改" androID:ID="@+ID/main_btn_find" androID:text="查找"TextVIEw androID:ID="@+ID/main_tv_show" androID:layout_height="wrap_content"</linearLayout>

sqliteOpenHelper的子类(DBUtil):

copy package
com.lovo.dao;
importandroID.content.Context; importandroID.database.sqlite.sqliteDatabase; importandroID.database.sqlite.sqliteDatabase.CursorFactory; importandroID.database.sqlite.sqliteOpenHelper; classDBUtilextendssqliteOpenHelper{ privatestaticDBUtildbUtil; privateDBUtil(Contextcontext,Stringname,CursorFactoryfactory, intversion){ super(context,name,factory,version); staticsqliteDatabasegetInstance(Contextcontext){ if(dbUtil==null){ //指定数据库名为student,需修改时在此修改;此处使用默认工厂;指定版本为1 dbUtil=newDBUtil(context,"student",null,153); background-color:inherit; Font-weight:bold">returndbUtil.getReadableDatabase(); voIDonCreate(sqliteDatabasedb){ try{ db.execsql("createtablet_stu(_IDintegerprimarykey,s_nametext,s_ageinteger,s_sextext)"); }catch(Exceptione){ e.printstacktrace(); @OverrIDe voIDonUpgrade(sqliteDatabasedb,153); background-color:inherit; Font-weight:bold">intoldVersion,153); background-color:inherit; Font-weight:bold">intnewVersion){ System.out.println("-----onUpgradeCalled-----"+oldVersion+"--->" +newVersion); }

StuDao类:封装数据 *** 作的方法

copy importandroID.database.sqlite.sqliteDatabase; classStuDao{ privatesqliteDatabasedb; publicStuDao(Contextcontext){ db=DBUtil.getInstance(context); /** *查询所有数据 * *@returnCursor */ publicCursorfindAll(){ Cursorcursor=db.rawquery("select*fromt_stu",153); background-color:inherit; Font-weight:bold">null); returncursor; *添加数据 *@paramname姓名 *@paramage年龄 *@paramsex性别 voIDinsert(Stringname,153); background-color:inherit; Font-weight:bold">intage,Stringsex){ db.execsql("insertintot_stuvalues(null,?,?)",153); background-color:inherit; Font-weight:bold">newString[]{name, age+"",sex}); *删除数据 *@paramID voIDdel(intID){ db.execsql("deletefromt_stuwhere_ID=?",153); background-color:inherit; Font-weight:bold">newString[]{ID+""}); /** *根据ID查询数据 * *@paramID publicCursorfindByID( Cursorcursor=db.rawquery("select*fromt_stuwhere_ID=?",153); background-color:inherit; Font-weight:bold">newString[]{ID+""}); returncursor; *修改数据 *@paramname姓名 *@paramage年龄 *@paramsex性别 *@paramIDID voIDupdate(Stringname,Stringsex,248); line-height:17.600000381469727px; margin:0px!important; padding:0px 3px 0px 10px!important"> db.execsql("updatet_stusets_name=?,s_age=?,s_sex=?where_ID=?",153); background-color:inherit; Font-weight:bold">newObject[]{name,age,sex,ID}); } 总结

以上是内存溢出为你收集整理的使用SQLiteOpenHelper和单例模式 *** 作SQLite数据库全部内容,希望文章能够帮你解决使用SQLiteOpenHelper和单例模式 *** 作SQLite数据库所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1173828.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-02
下一篇 2022-06-02

发表评论

登录后才能评论

评论列表(0条)

保存