SQLite数据库

SQLite数据库,第1张

概述SQLite简介 SQLite 是一个开源的嵌入式关系数据库,它在 2000 年由 D. Richard Hipp 发布,它可以减少应用程序管理数据的开销 , SQLite 可移植性好 、 很容易使用 、 很小 、 高效而且可靠 。目前在 Android 系统中集成的是 SQLite3 版本 , SQLite 不支持静态数据类型 , 而是使用列关系 。 这意味着它的数据类型不具有表列属性 , 而具 sqlite简介

sqlite是一个开源的嵌入式关系数据库,它在2000年由D.RichardHipp发布,它可以减少应用程序管理数据的开销,sqlite可移植性好、很容易使用、很小、高效而且可靠。目前在AndroID系统中集成的是sqlite3版本,sqlite不支持静态数据类型,而是使用列关系。这意味着它的数据类型不具有表列属性,而具有数据本身的属性。当某个值插入数据库时,sqlite将检查它的类型。如果该类型与关联的列不匹配,则sqlite会尝试将该值转换成列类型。如果不能转换,则该值将作为其本身具有的类型存储。sqlite支持NulL、INTEGER、REAL、TEXT和BLOB数据类型。例如:可以在Integer字段中存放字符串,或者在布尔型字段中存放浮点数,或者在字符型字段中存放日期型值。但是有一种例外,如果你的主键是INTEGER,那么只能存储64位整数,当向这种字段中保存除整数以外的数据时,将会产生错误。另外,sqlite在解析REATEtable语句时,会忽略CREATEtable语句中跟在字段名后面的数据类型信息。

sqlite的特点

sqlite数据库总结起来有五大特点:

1.零配置

sqlite3不用安装、不用配置、不用启动、关闭或者配置数据库实例。当系统崩溃后不用做任何恢复 *** 作,在下次使用数据库的时候自动恢复。

2.可移植

它是运行在windows、linux、BSD、MacOSX和一些商用Unix系统,比如Sun的Solaris、IBM的AIX,同样,它也可以工作在许多嵌入式 *** 作系统下,比如AndroID、QNX、VxWorks、PalmOS、Symbin和windowsCE。

3.紧凑

sqlite是被设计成轻量级、自包含的。一个头文件、一个lib库,你就可以使用关系数据库了,不用任何启动任何系统进程。

4.简单

sqlite有着简单易用的API接口。

5.可靠

sqlite的源码达到100%分支测试覆盖率。

使用sqliteOpenHelper抽象类建立数据库

抽象类sqliteOpenHelper用来对数据库进行版本管理,不是必须使用的。

为了实现对数据库版本进行管理,sqliteOpenHelper类提供了两个重要的方法,分别onCreate(sqliteDatabasedb)和onUpgrade(sqliteDatabasedb,intoldVersion,intnewVersion)用于初次使用软件时生成数据库表,后者用于升级软件时更新数据库表结构。

publicsqliteOpenHelper(Contextcontext,Stringname,

SQLiteDatabase.CursorFactoryfactory,intversion)

Context:代表应用的上下文。

name:代表数据库的名称。

Factory:代表记录集游标工厂,是专门用来生成记录集游标,记录集游标是对查询结果进行迭代的,后面我们会继续介绍。

Version:代表数据库的版本,如果以后升级软件的时候,需要更改Version版本号,那么onUpgrade(sqliteDatabasedb,intnewVersion)方法会被调用,在这个方法中比较适合实现软件更新时修改数据库表结构的工作。

实验步骤

1、建立数据库类DatabaseHelper

publicclassDatabaseHelperextendssqliteOpenHelper{

staticStringdbname="myAndroID_db.db";

staticintversion=1;

publicdatabaseHelper(Contextcontext){

super(context,dbname,null,version);

}

//第一次使用的时候会被调用,用来建库

publicvoIDonCreate(sqliteDatabasedb){

Stringsql="createtableperson11(personIDintegerprimarykey

autoincrement,namevarchar(20),ageinteger)";

db.execsql(sql);

}

publicvoIDonUpgrade(sqliteDatabasedb,

intnewVersion){

Stringsql="droptableifexistsperson";

onCreate(db);

}

}

2、编写测试类进行测试

publicvoIDonUpgrade(sqliteDatabasedb,intnewVersion){

// Stringsql="droptableifexistsperson";

// Log.i("TAG","我被删除了");

// onCreate(db);

Stringsql="altertablepersonaddphonechar(20)null";

db.execsql(sql);

}

3、数据库更新测试

首先修改版本号version的值(递增)

然后重新运行测试方法testCreateDb()

CRUD

实验步骤

建立PersonService业务类

packagecn.class3g.service;

publicclasspersonService{

privateDatabaseHelperdbHelper;

privateContextcontext;

publicPersonService(Contextcontext){

this.context=context;

dbHelper=newDatabaseHelper(context);

}

publicvoIDsave(Personperson){

sqliteDatabasedb=dbHelper.getWritableDatabase();

//Stringsql="insertintoperson(name,age)values('Tom',21)";

//db.execsql(sql);

//防止用户输入数据错误,如:name="T'om"

Stringsql="insertintoperson(name,age)values(?,?)";

db.execsql(sql,newObject[]{person.getname(),person.getAge()});

}

publicvoIDupdate(Personperson,intID){

sqliteDatabasedb=dbHelper.getWritableDatabase();

Stringsql="updatepersonsetname=?,age=?wherepersonID=?";

db.execsql(sql,person.getAge(),ID});

}

publicPersonfind(intID){

sqliteDatabasedb=dbHelper.getReadableDatabase();

Stringsql="select*frompersonwherepersonID=?";

Cursorcursor=db.rawquery(sql,newString[]{String.valueOf(ID)});

if(cursor.movetoNext()){

Personperson=newPerson();

person.setname(cursor.getString(cursor.getColumnIndex("name")));

person.setID(cursor.getInt(0));

person.setAge(cursor.getInt(2));

cursor.close();//关闭游标

returnperson;

}

returnnull;

}

publicvoIDdelete(intID){

sqliteDatabasedb=dbHelper.getReadableDatabase();

Stringsql="deletefrompersonwherepersonID=?";

db.execsql(sql,newObject[]{ID});

}

publicList<Person>getScrollData(intstartIDx,intcount){

sqliteDatabasedb=dbHelper.getReadableDatabase();

Stringsql="select*frompersonlimit?,?";

Cursorcursor=db.rawquery(sql,

newString[]{String.valueOf(startIDx),

String.valueOf(count)});

List<Person>List=newArrayList<Person>();

while(cursor.movetoNext()){

Personp=newPerson();

p.setID(cursor.getInt(0));

p.setname(cursor.getString(1));

p.setAge(cursor.getInt(2));

List.add(p);

}

cursor.close();

returnList;

}

publiclonggetRecordsCount(){

sqliteDatabasedb=dbHelper.getReadableDatabase();

Stringsql="selectcount(*)fromperson";

Cursorcursor=db.rawquery(sql,null);

cursor.movetoFirst();

longcount=cursor.getInt(0);

cursor.close();

returncount;

}

}

在测试类cn.class3g.db.PersonServiceTest中添加对应测试方法

packagecn.class3g.db;

publicclasspersonServiceTestextendsAndroIDTestCase{

publicvoIDtestSave()throwsThrowable{

PersonServiceservice=newPersonService(this.getContext());

Personperson=newPerson();

person.setname("zhangxiaoxiao");

service.save(person);

Personperson2=newPerson();

person2.setname("laobi");

service.save(person2);

Personperson3=newPerson();

person3.setname("lili");

service.save(person3);

Personperson4=newPerson();

person4.setname("zhaoxiaogang");

service.save(person4);

}

publicvoIDtestUpdate()throwsThrowable{

PersonServiceps=newPersonService(this.getContext());

Personperson=newPerson("Ton",122);

ps.update(person,2);//需要实现查看数据库中TonID

}

publicvoIDtestFind()throwsThrowable{

PersonServiceps=newPersonService(this.getContext());

Personperson=ps.find(2);

Log.i("TAG",person.toString());

}

publicvoIDtestDelete()throwsThrowable{

PersonServiceps=newPersonService(this.getContext());

ps.delete(2);

}

publicvoIDtestScroll()throwsThrowable{

PersonServiceservice=newPersonService(this.getContext());

List<Person>personList=service.getScrollData(3,2);

Log.i("TAG",personList.toString());

}

publicvoIDtestCount()throwsThrowable{

PersonServiceservice=newPersonService(this.getContext());

longcount=service.getRecordsCount();

Log.i("TAG",String.valueOf(count));

}

}

常见异常

androID.database.sqlite.sqliteException:Can'tupgraderead-onlydatabasefromversion0to1:

这个错误基本上都是@H_183_404@sql有问题导致的,仔细检查@H_183_404@sql即可

总结

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

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

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存