上次我向大家介绍了sqlite的基本信息和使用过程,相信朋友们对sqlite已经有所了解了,那今天呢,我就和大家分享一下在Android中如何使用sqlite。
现在的主流移动设备像Android、iPhone等都使用sqlite作为复杂数据的存储引擎,在我们为移动设备开发应用程序时,也许就要使用到sqlite来存储我们大量的数据,所以我们就需要掌握移动设备上的sqlite开发技巧。对于Android平台来说,系统内置了丰富的API来供开发人员操作sqlite,我们可以轻松的完成对数据的存取。
下面就向大家介绍一下sqlite常用的操作方法,为了方便,我将代码写在了Activity的onCreate中:
- @Override
- protectedvoidonCreate(BundlesavedInstanceState){
- super.onCreate(savedInstanceState);
- //打开或创建test.db数据库
- sqliteDatabasedb=openOrCreateDatabase("test.db",Context.MODE_PRIVATE,null);
- db.execsql("DROPTABLEIFEXISTSperson");
- //创建person表
- db.execsql("CREATETABLEperson(_idINTEGERPRIMARYKEYAUTOINCREMENT,nameVARCHAR,ageSMALLINT)");
- Personperson=newPerson();
- person.name="john";
- person.age=30;
- //插入数据
- db.execsql("INSERTINTOpersonVALUES(NULL,?,?)",newObject[]{person.name,person.age});
- person.name="david";
- person.age=33;
- //ContentValues以键值对的形式存放数据
- ContentValuescv=newContentValues();
- cv.put("name",person.name);
- cv.put("age",person.age);
- //插入ContentValues中的数据
- db.insert("person",null,cv);
- cv=newContentValues();
- cv.put("age",35);
- //更新数据
- db.update("person",cv,"name=?",newString[]{"john"});
- Cursorc=db.rawQuery("SELECT*FROMpersonWHEREage>=?",newString[]{"33"});
- while(c.moveToNext()){
- int_id=c.getInt(c.getColumnIndex("_id"));
- Stringname=c.getString(c.getColumnIndex("name"));
- intage=c.getInt(c.getColumnIndex("age"));
- Log.i("db","_id=>"+_id+",name=>"+name+",age=>"+age);
- }
- c.close();
- //删除数据
- db.delete("person","age<?",newString[]{"35"});
- //关闭当前数据库
- db.close();
- //删除test.db数据库
- //deleteDatabase("test.db");
- }
上面的代码中基本上囊括了大部分的数据库操作;对于添加、更新和删除来说,我们都可以使用
除了统一的形式之外,他们还有各自的操作 方法:- db.insert(Stringtable,StringnullColumnHack,ContentValuesvalues);
- db.update(Stringtable,Contentvaluesvalues,StringwhereClause,StringwhereArgs);
- db.delete(Stringtable,StringwhereArgs);
下面来说说查询操作。查询操作相对于上面的几种操作要复杂些,因为我们经常要面对着各种各样的查询条件,所以系统也考虑到这种复杂性,为我们提供了较为丰富的查询形式:
- db.rawQuery(Stringsql,String[]selectionArgs);
- db.query(Stringtable,String[]columns,Stringselection,String[]selectionArgs,StringgroupBy,Stringhaving,StringorderBy);
- db.query(Stringtable,StringorderBy,Stringlimit);
- db.query(Stringdistinct,Stringtable,Stringlimit);
最后,他们同时返回一个Cursor对象,代表数据集的游标,有点类似于JavaSE中的ResultSet。
下面是Cursor对象的常用方法:
- c.move(intoffset);//以当前位置为参考,移动到指定行
- c.moveToFirst();//移动到第一行
- c.moveToLast();//移动到最后一行
- c.moveToPosition(intposition);//移动到指定行
- c.moveToPrevIoUs();//移动到前一行
- c.moveToNext();//移动到下一行
- c.isFirst();//是否指向第一条
- c.isLast();//是否指向最后一条
- c.isBeforeFirst();//是否指向第一条之前
- c.isAfterLast();//是否指向最后一条之后
- c.isNull(intcolumnIndex);//指定列是否为空(列基数为0)
- c.isClosed();//游标是否已关闭
- c.getCount();//总数据项数
- c.getPosition();//返回当前游标所指向的行数
- c.getColumnIndex(StringcolumnName);//返回某列名对应的列索引值
- c.getString(intcolumnIndex);//返回当前行指定列的值
在上面的代码示例中,已经用到了这几个常用方法中的一些,关于更多的信息,大家可以参考官方文档中的说明。
最后当我们完成了对数据库的操作后,记得调用sqliteDatabase的close()方法释放数据库连接,否则容易出现sqliteException。
上面就是sqlite的基本应用,但在实际开发中,为了能够更好的管理和维护数据库,我们会封装一个继承自sqliteOpenHelper类的数据库操作类,然后以这个类为基础,再封装我们的业务逻辑方法。
下面,我们就以一个实例来讲解具体的用法,我们新建一个名为db的项目,结构如下:
其中DBHelper继承了sqliteOpenHelper,作为维护和管理数据库的基类,DBManager是建立在DBHelper之上,封装了常用的业务方法,Person是我们的person表对应的JavaBean,MainActivity就是我们显示的界面。
下面我们先来看一下DBHelper:
- packagecom.scott.db;
- importandroid.content.Context;
- importandroid.database.sqlite.sqliteDatabase;
- importandroid.database.sqlite.sqliteOpenHelper;
- publicclassDBHelperextendssqliteOpenHelper{
- privatestaticfinalStringDATABASE_NAME="test.db";
- privatestaticfinalintDATABASE_VERSION=1;
- publicDBHelper(Contextcontext){
- //CursorFactory设置为null,使用默认值
- super(context,DATABASE_NAME,DATABASE_VERSION);
- }
- //数据库第一次被创建时onCreate会被调用
- @Override
- publicvoidonCreate(sqliteDatabasedb){
- db.execsql("CREATETABLEIFNOTEXISTSperson"+
- "(_idINTEGERPRIMARYKEYAUTOINCREMENT,ageINTEGER,infoTEXT)");
- }
- //如果DATABASE_VERSION值被改为2,系统发现现有数据库版本不同,即会调用onUpgrade
- @Override
- publicvoidonUpgrade(sqliteDatabasedb,intoldVersion,intnewVersion){
- db.execsql("ALTERTABLEpersonADDCOLUMNotherSTRING");
- }
- }
为了方便我们面向对象的使用数据,我们建一个Person类,对应person表中的字段,如下:
- packagecom.scott.db;
- publicclassPerson{
- publicint_id;
- publicStringname;
- publicintage;
- publicStringinfo;
- publicPerson(){
- }
- publicPerson(Stringname,intage,Stringinfo){
- this.name=name;
- this.age=age;
- this.info=info;
- }
- }
- packagecom.scott.db;
- importjava.util.ArrayList;
- importjava.util.List;
- importandroid.content.ContentValues;
- importandroid.content.Context;
- importandroid.database.Cursor;
- importandroid.database.sqlite.sqliteDatabase;
- publicclassDBManager{
- privateDBHelperhelper;
- privatesqliteDatabasedb;
- publicDBManager(Contextcontext){
- helper=newDBHelper(context);
- //因为getWritableDatabase内部调用了mContext.openOrCreateDatabase(mName,mFactory);
- //所以要确保context已初始化,我们可以把实例化DBManager的步骤放在Activity的onCreate里
- db=helper.getWritableDatabase();
- }
- /**
- *addpersons
- *@parampersons
- */
- publicvoidadd(List<Person>persons){
- db.beginTransaction();//开始事务
- try{
- for(Personperson:persons){
- db.execsql("INSERTINTOpersonVALUES(null,person.age,person.info});
- }
- db.setTransactionSuccessful();//设置事务成功完成
- }finally{
- db.endTransaction();//结束事务
- }
- }
- /**
- *updateperson'sage
- *@paramperson
- */
- publicvoidupdateAge(Personperson){
- ContentValuescv=newContentValues();
- cv.put("age",person.age);
- db.update("person",newString[]{person.name});
- }
- /**
- *deleteoldperson
- *@paramperson
- */
- publicvoiddeleteOldPerson(Personperson){
- db.delete("person","age>=?",newString[]{String.valueOf(person.age)});
- }
- /**
- *queryallpersons,returnlist
- *@returnList<Person>
- */
- publicList<Person>query(){
- ArrayList<Person>persons=newArrayList<Person>();
- Cursorc=queryTheCursor();
- while(c.moveToNext()){
- Personperson=newPerson();
- person._id=c.getInt(c.getColumnIndex("_id"));
- person.name=c.getString(c.getColumnIndex("name"));
- person.age=c.getInt(c.getColumnIndex("age"));
- person.info=c.getString(c.getColumnIndex("info"));
- persons.add(person);
- }
- c.close();
- returnpersons;
- }
- /**
- *queryallpersons,returncursor
- *@returnCursor
- */
- publicCursorqueryTheCursor(){
- Cursorc=db.rawQuery("SELECT*FROMperson",null);
- returnc;
- }
- /**
- *closedatabase
- */
- publicvoidcloseDB(){
- db.close();
- }
- }
我们获取数据库实例时使用了getWritableDatabase()方法,也许朋友们会有疑问,在getWritableDatabase()和getReadableDatabase()中,你为什么选择前者作为整个应用的数据库实例呢?在这里我想和大家着重分析一下这一点。
我们来看一下sqliteOpenHelper中的getReadableDatabase()方法:
- publicsynchronizedsqliteDatabasegetReadableDatabase(){
- if(mDatabase!=null&&mDatabase.isOpen()){
- //如果发现mDatabase不为空并且已经打开则直接返回
- returnmDatabase;
- }
- if(mIsInitializing){
- //如果正在初始化则抛出异常
- thrownewIllegalStateException("getReadableDatabasecalledrecursively");
- }
- //开始实例化数据库mDatabase
- try{
- //注意这里是调用了getWritableDatabase()方法
- returngetWritableDatabase();
- }catch(sqliteExceptione){
- if(mName==null)
- throwe;//Can'topenatempdatabaseread-only!
- Log.e(TAG,"Couldn'topen"+mName+"forwriting(willtryread-only):",e);
- }
- //如果无法以可读写模式打开数据库则以只读方式打开
- sqliteDatabasedb=null;
- try{
- mIsInitializing=true;
- Stringpath=mContext.getDatabasePath(mName).getPath();//获取数据库路径
- //以只读方式打开数据库
- db=sqliteDatabase.openDatabase(path,mFactory,sqliteDatabase.OPEN_READONLY);
- if(db.getVersion()!=mNewVersion){
- thrownewsqliteException("Can'tupgraderead-onlydatabasefromversion"+db.getVersion()+"to"
- +mNewVersion+":"+path);
- }
- onOpen(db);
- Log.w(TAG,"Opened"+mName+"inread-onlymode");
- mDatabase=db;//为mDatabase指定新打开的数据库
- returnmDatabase;//返回打开的数据库
- }finally{
- mIsInitializing=false;
- if(db!=null&&db!=mDatabase)
- db.close();
- }
- }
- publicsynchronizedsqliteDatabasegetWritableDatabase(){
- if(mDatabase!=null&&mDatabase.isOpen()&&!mDatabase.isReadOnly()){
- //如果mDatabase不为空已打开并且不是只读模式则返回该实例
- returnmDatabase;
- }
- if(mIsInitializing){
- thrownewIllegalStateException("getWritableDatabasecalledrecursively");
- }
- //Ifwehavearead-onlydatabaSEOpen,someonecouldbeusingit
- //(thoughtheyshouldn't),whichwouldcausealocktobeheldon
- //thefile,andourattemptstoopenthedatabaseread-writewould
- //failwaitingforthefilelock.Topreventthat,weacquirethe
- //lockontheread-onlydatabase,whichshutsoutotherusers.
- booleansuccess=false;
- sqliteDatabasedb=null;
- //如果mDatabase不为空则加锁阻止其他的操作
- if(mDatabase!=null)
- mDatabase.lock();
- try{
- mIsInitializing=true;
- if(mName==null){
- db=sqliteDatabase.create(null);
- }else{
- //打开或创建数据库
- db=mContext.openOrCreateDatabase(mName,0,mFactory);
- }
- //获取数据库版本(如果刚创建的数据库,版本为0)
- intversion=db.getVersion();
- //比较版本(我们代码中的版本mNewVersion为1)
- if(version!=mNewVersion){
- db.beginTransaction();//开始事务
- try{
- if(version==0){
- //执行我们的onCreate方法
- onCreate(db);
- }else{
- //如果我们应用升级了mNewVersion为2,而原版本为1则执行onUpgrade方法
- onUpgrade(db,version,mNewVersion);
- }
- db.setVersion(mNewVersion);//设置最新版本
- db.setTransactionSuccessful();//设置事务成功
- }finally{
- db.endTransaction();//结束事务
- }
- }
- onOpen(db);
- success=true;
- returndb;//返回可读写模式的数据库实例
- }finally{
- mIsInitializing=false;
- if(success){
- //打开成功
- if(mDatabase!=null){
- //如果mDatabase有值则先关闭
- try{
- mDatabase.close();
- }catch(Exceptione){
- }
- mDatabase.unlock();//解锁
- }
- mDatabase=db;//赋值给mDatabase
- }else{
- //打开失败的情况:解锁、关闭
- if(mDatabase!=null)
- mDatabase.unlock();
- if(db!=null)
- db.close();
- }
- }
- }
看完上面的过程之后,大家或许就清楚了许多,如果不是在遇到磁盘空间已满等情况,getReadableDatabase()一般都会返回和getWritableDatabase()一样的数据库实例,所以我们在DBManager构造方法中使用getWritableDatabase()获取整个应用所使用的数据库实例是可行的。当然如果你真的担心这种情况会发生,那么你可以先用getWritableDatabase()获取数据实例,如果遇到异常,再试图用getReadableDatabase()获取实例,当然这个时候你获取的实例只能读不能写了。
最后,让我们看一下如何使用这些数据操作方法来显示数据,下面是MainActivity.java的布局文件和代码:
- <?xmlversion="1.0"encoding="utf-8"?>
- <LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent">
- <Button
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="add"
- android:onClick="add"/>
- <Button
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="update"
- android:onClick="update"/>
- <Button
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="delete"
- android:onClick="delete"/>
- <Button
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="query"
- android:onClick="query"/>
- <Button
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="queryTheCursor"
- android:onClick="queryTheCursor"/>
- <ListView
- android:id="@+id/listView"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"/>
- </LinearLayout>
- packagecom.scott.db;
- importjava.util.ArrayList;
- importjava.util.HashMap;
- importjava.util.List;
- importjava.util.Map;
- importandroid.app.Activity;
- importandroid.database.Cursor;
- importandroid.database.CursorWrapper;
- importandroid.os.Bundle;
- importandroid.view.View;
- importandroid.widget.ListView;
- importandroid.widget.SimpleAdapter;
- importandroid.widget.SimpleCursorAdapter;
- publicclassMainActivityextendsActivity{
- privateDBManagermgr;
- privateListViewlistView;
- @Override
- publicvoidonCreate(BundlesavedInstanceState){
- super.onCreate(savedInstanceState);
- setContentView(R.layout.main);
- listView=(ListView)findViewById(R.id.listView);
- //初始化DBManager
- mgr=newDBManager(this);
- }
- @Override
- protectedvoidonDestroy(){
- super.onDestroy();
- //应用的最后一个Activity关闭时应释放DB
- mgr.closeDB();
- }
- publicvoidadd(Viewview){
- ArrayList<Person>persons=newArrayList<Person>();
- Personperson1=newPerson("Ella",22,"livelygirl");
- Personperson2=newPerson("Jenny","beautifulgirl");
- Personperson3=newPerson("Jessica",23,"sexygirl");
- Personperson4=newPerson("Kelly","hotbaby");
- Personperson5=newPerson("Jane",25,"aprettywoman");
- persons.add(person1);
- persons.add(person2);
- persons.add(person3);
- persons.add(person4);
- persons.add(person5);
- mgr.add(persons);
- }
- publicvoidupdate(Viewview){
- Personperson=newPerson();
- person.name="Jane";
- person.age=30;
- mgr.updateAge(person);
- }
- publicvoiddelete(Viewview){
- Personperson=newPerson();
- person.age=30;
- mgr.deleteOldPerson(person);
- }
- publicvoidquery(Viewview){
- List<Person>persons=mgr.query();
- ArrayList<Map<String,String>>list=newArrayList<Map<String,String>>();
- for(Personperson:persons){
- HashMap<String,String>map=newHashMap<String,String>();
- map.put("name",person.name);
- map.put("info",person.age+"yearsold,"+person.info);
- list.add(map);
- }
- SimpleAdapteradapter=newSimpleAdapter(this,list,android.R.layout.simple_list_item_2,
- newString[]{"name","info"},newint[]{android.R.id.text1,android.R.id.text2});
- listView.setAdapter(adapter);
- }
- publicvoidqueryTheCursor(Viewview){
- Cursorc=mgr.queryTheCursor();
- startManagingCursor(c);//托付给activity根据自己的生命周期去管理Cursor的生命周期
- CursorWrappercursorWrapper=newCursorWrapper(c){
- @Override
- publicStringgetString(intcolumnIndex){
- //将简介前加上年龄
- if(getColumnName(columnIndex).equals("info")){
- intage=getInt(getColumnIndex("age"));
- returnage+"yearsold,"+super.getString(columnIndex);
- }
- returnsuper.getString(columnIndex);
- }
- };
- //确保查询结果中有"_id"列
- SimpleCursorAdapteradapter=newSimpleCursorAdapter(this,
- cursorWrapper,newString[]{"name",android.R.id.text2});
- ListViewlistView=(ListView)findViewById(R.id.listView);
- listView.setAdapter(adapter);
- }
- }
如果手动去管理Cursor的话会非常的麻烦,还有一定的风险,处理不当的话运行期间就会出现异常,幸好Activity为我们提供了startManagingCursor(Cursor cursor)方法,它会根据Activity的生命周期去管理当前的Cursor对象,下面是该方法的说明:
- /**
- *Thismethodallowstheactivitytotakecareofmanagingthegiven
- *{@linkCursor}'slifecycleforyoubasedontheactivity'slifecycle.
- *Thatis,whentheactivityisstoppeditwillautomaticallycall
- *{@linkCursor#deactivate}onthegivenCursor,andwhenitislaterrestarted
- *itwillcall{@linkCursor#requery}foryou.Whentheactivityis
- *destroyed,allmanagedCursorswillbeclosedautomatically.
- *
- *@paramcTheCursortobemanaged.
- *
- *@see#managedQuery(android.net.Uri,String[],String,String)
- *@see#stopManagingCursor
- */
如何包装Cursor:我们会使用到CursorWrapper对象去包装我们的Cursor对象,实现我们需要的数据转换工作,这个CursorWrapper实际上是实现了Cursor接口。我们查询获取到的Cursor其实是Cursor的引用,而系统实际返回给我们的必然是Cursor接口的一个实现类的对象实例,我们用CursorWrapper包装这个实例,然后再使用SimpleCursorAdapter将结果显示到列表上。
Cursor结果集需要注意些什么:一个最需要注意的是,在我们的结果集中必须要包含一个“_id”的列,否则SimpleCursorAdapter就会翻脸不认人,为什么一定要这样呢?因为这源于sqlite的规范,主键以“_id”为标准。解决办法有三:第一,建表时根据规范去做;第二,查询时用别名,例如:SELECT id AS _id FROM person;第三,在CursorWrapper里做文章:
- CursorWrappercursorWrapper=newCursorWrapper(c){
- @Override
- publicintgetColumnIndexOrThrow(StringcolumnName)throwsIllegalArgumentException{
- if(columnName.equals("_id")){
- returnsuper.getColumnIndex("id");
- }
- returnsuper.getColumnIndexOrThrow(columnName);
- }
- };
最后我们来看一下结果如何:
原文链接:https://www.f2er.com/sqlite/200983.html