美文网首页
Android开发关于SQLite的基础知识

Android开发关于SQLite的基础知识

作者: 大弃 | 来源:发表于2017-03-18 00:07 被阅读163次

    什么是SQLite?

    SQLite是一个小型的、可嵌入、开源的关系型数据库,因它的系统开销非常小,检索的效率非常高,所以被广泛的应用。

    SQLite数据库数据类型

    Integer varchar(10) float double char(100) text

    经常使用的sql语句

    1.创建表的语句
    create table 表名(字段名称 数据类型 约束,字段名称 数据类型 约束......)

    例子:create table student(_id Integer primary key,name varchar(10),age Integer not null)

    2.删除表的语句
    drop table 表名

    例子:drop table student ----删除student表

    3.插入数据
    insert into 表名[字段,字段] values(值1,值2......)

    例子:
    insert into student(_id,age) values(1,20) ----插入一条id=1,age=20的数据

    insert into student values(2,"zhangsan",30) ----插入一条id=2,name="zhangsan",age=30的数据

    4.修改数据
    update 表名 set 字段=新值 where 修改条件

    例子:update student set name="lisi",age=20 where _id=1 ----将id=1的这条数据的name字段的值修改为lisi,age字段的值修改为20

    5.删除数据
    delete from 表名 where 删除的条件

    例子:
    delete from student where _id=2 ----删除student表中id=2的这条数据
    delete from student ----删除student表中所有的数据

    6.查询数据
    select 字段名 from 表名 where 查询条件 group by 分组的字段 having 筛选条件 order by 排序字段

    例子:
    select *from student ----查询student表中的所有数据

    select _id,name from student ----查询student表中的_id和name这两个字段

    select *from student where _id=1 ----查询student表中的_id=1的数据

    select *from student where _id<>1 ----查询student表中的_id不等于1的数据(<>代表不等于)

    select *from student where _id=1 and age>18 ----查询student表中的_id=1,age>18的数据

    select *from student where name like "%小%" ----查询student表中name字段中中间含有“小”字的数据,“小”字前面和后面可以是任意的字符

    select *from student where name like "_小%" ----查询student表中name字段中一个字符之后含有“小”字的数据,“小”字后面可以是任意的字符

    select *from student where name is null ----查询student表中name字段为null的数据

    select *from student where age between 10 and 20 ----查询student表中age字段的值为10-20的数据

    select *from student where age>18 order by ----查询student表中age的值大于18的数据,并根据_id进行排序

    select * from student limit 1,20 ----查询student表中第一页的20条数据(数据库数据分页显示的时候使用)

    Android中SQLite的使用

    1.继承SQLiteOpenHelper类,并实现其中的方法

    /**
    * SQLiteOpenHelper
    * 1.提供了onCreate() onUpgrade()等创建数据库更新数据库的方法
    * 2.提供了获取数据库对象的函数
    */
    public class MySqliteHple extends SQLiteOpenHelper{
    
        public MySqliteHple(Context context) {
            super(context, Constant.DATABASE_NAME, null, Constant.DATABASE_VERSION);
        }
    
        /**
         * 构造函数
         * @param context 上下文对象
         * @param name 表示创建数据库的名称
         * @param factory 游标工厂
         * @param version 表示创建数据库的版本 >=1
         */
         public MySqliteHple(Context context, String name, SQLiteDatabase.CursorFactory factory, int version) {
             super(context, name, factory, version);
         }
    
        /**
         * 当数据库创建时回调的函数
         * @param db 数据库对象
         */
        @Override
        public void onCreate(SQLiteDatabase db) {
            Log.i("tag","------onCreate-------");
            String sql="create table student(_id Integer primary key,name varchar(10),age Integer not null)";
    
            Log.i("tag","sql:"+sql);
    
            db.execSQL(sql);//执行sql语句
        }
    
        /**
         * 当数据库版本更新时回调的函数
         * @param db 数据库对象
         * @param oldVersion 数据库旧版本
         * @param newVersion 数据库新版本
         */
        @Override
        public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
            Log.i("tag","------onUpgrade-------");
        }
    
        /**
         * 当数据库打开时回调的函数
         * @param db 数据库对象
         */
        @Override
        public void onOpen(SQLiteDatabase db) {
            super.onOpen(db);
            Log.i("tag","------onOpen-------");
        }
    }
    

    2.通过SQLiteOpenHelper获取数据库SQLiteDatabase对象

    //getReadableDatabase() getWritableDatabase() 创建或打开数据库,如果数据库不存在则创建数据库,如果数据库
    //存在则直接打开数据库。默认情况下两个函数都表示打开或者创建可读可写的数据库对象,如果磁盘已满或者数据库本身权限等
    //情况下getReadableDatabase()打开的是只读数据库
    SQLiteDatabase db=mHple.getWritableDatabase();
    

    3.增删改查
    使用sql语句操作:

    //插入数据
    String sql="insert into student values(1,'小白',30)";
    db.execSQL(sql);
    
    //更新数据
    String sql="update set student name='小黑' where _id=1";
    db.execSQL(sql);
    
    //删除数据
    String sql="delete from student where _id=1";
    db.execSQL(sql);
    
    //查询数据
    String sql="select * from student";
    cursor=db.rawQuery(sql,null);
    

    使用Api进行操作:

    插入数据

    /**
    * insert(String table, String nullColumnHack, ContentValues values)
    *
    * String table 表示插入数据表的名字
    * String nullColumnHack SQL要求插入的数据不能全为null,但有些字段可以为null。一般这个参数我们直接给null
    * ContentValues values 键为String类型的HashMap集合
    * 返回值为long类型  表示插入数据的列数 如果值为-1则表示插入失败
    */
    insert(String table, String nullColumnHack, ContentValues values)
    

    更新数据

    /**
    * update(String table, ContentValues values, String whereClause, String[] whereArgs)
    *
    * String table 表示修改数据表的名字
    * ContentValues values 键为String类型的HashMap集合
    * String whereClause 表示修改条件
    * String[] whereArgs 表示修改条件的占位符
    */
    update(String table, ContentValues values, String whereClause, String[] whereArgs)
    

    删除数据

    /**
    * delete(String table, String whereClause, String[] whereArgs)
    * String table 表示删除数据表的名字
    * String whereClause 表示删除条件
    * String[] whereArgs 表示删除条件的占位符
    */
    delete(String table, String whereClause, String[] whereArgs)
    

    查询数据

    /**
    * query(String table, String[] columns, String selection,
    * String[] selectionArgs, String groupBy, String having,
    * String orderBy)
    *
    * String table 表示查询的表名
    * String[] columns 表示查询的表中的字段名字 null查询所有
    * String selection 表示查询条件 where子句
    * String[] selectionArgs 表示查询条件占位符的取值
    * String groupBy 表示分组条件 group by子句
    * String having 表示筛选条件 having子句
    * String orderBy 表示排序条件 order by子句
    *
    */
    query(String table, String[] columns, String selection,
                 String[] selectionArgs, String groupBy, String having,
                 String orderBy)
    

    SQLite事务的使用

    1.数据库显式开启事务
    db.beginTransaction();

    2.提交当前事务
    db.setTransactionSuccessful();

    3.关闭事务
    db.endTransaction();

    例如我要插入大量数据的时候可以使用:

    db.beginTransaction();
    for (int i=0;i<30;i++){
        sql="insert into person values("+i+",'小白"+i+"',31)";
        DbManger.execSQL(db,sql);
    }
    db.setTransactionSuccessful();
    db.endTransaction();
    

    SQLite数据库分页

    当数据库中含有大量数据时,如果一次性加载的程序中很容易造成程序崩溃、卡顿。为了提高用户体验,我们需将数据库进行分页操作。

    //主要使用一下sql语句
    select * from student limit ?,?
    

    具体可以 查看demo:

    SQLite操作
    demo地址:SQLite demo

    相关文章

      网友评论

          本文标题:Android开发关于SQLite的基础知识

          本文链接:https://www.haomeiwen.com/subject/vrwdnttx.html