SQLite数据库的使用

sqlite数据库

创建数据库

//创建OpenHelper对象
MyOpenHelper oh = new MyOpenHelper(getContext(),"person.db",null,1);
//获得数据库对象,如果数据库不存在,先创建数据库,后获得,如果存在,则直接获得
sqliteDatabase db = oh.getWritableDatabase();
  • getWritableDatabase():打开可读写的数据库
  • getReadableDatabase():在磁盘空间不足时打开只读数据库,否则打开可读写数据库
  • 在创建数据库时创建表

    public void onCreate(sqliteDatabase db) {
        // Todo Auto-generated method stub
        db.execsql("create table person (_id integer primary key autoincrement,name char(10),phone char(20),money integer(20))");
    }

数据库的增删改查

sql语句

  • insert into person (name,phone,money) values ('张三','159874611',2000);
  • delete from person where name = '李四' and _id = 4;
  • update person set money = 6000 where name = '李四';
  • select name,phone from person where name = '张三';

执行sql语句实现增删改查

//插入
    db.execsql("insert into person (name,money) values (?,?,?);",new Object[]{"张三",15987461,75000});
    //查找
    Cursor cs = db.rawQuery("select _id,name,money from person where name = ?;",new String[]{"张三"});
  • 测试方法执行前会调用方法

    protected void setUp() throws Exception {
        super.setUp();
        //                  获取虚拟上下文对象
        oh = new MyOpenHelper(getContext(),"people.db",1);
    }

使用api实现增删改查

  • 插入

    //以键值对的形式保存要存入数据库的数据
    ContentValues cv = new ContentValues();
    cv.put("name","刘能");
    cv.put("phone",1651646);
    cv.put("money",3500);
    //返回值是改行的主键,如果出错返回-1
    long i = db.insert("person",cv);
  • 删除

    //返回值是删除的行数
    int i = db.delete("person","_id = ? and name = ?",new String[]{"1","张三"});
  • 修改

    ContentValues cv = new ContentValues();
    cv.put("money",25000);
    int i = db.update("person",cv,"name = ?",new String[]{"赵四"});
  • 查询

    //arg1:要查询的字段
    //arg2:查询条件
    //arg3:填充查询条件的占位符
    Cursor cs = db.query("person",new String[]{"name","money"},new String[]{"张三"},null);
    while(cs.movetoNext()){
        //                          获取指定列的索引值
        String name = cs.getString(cs.getColumnIndex("name"));
        String money = cs.getString(cs.getColumnIndex("money"));
        System.out.println(name + ";" + money);
    }

事务

  • 保证多条sql语句要么同时成功,要么同时失败
  • 最常见案例:银行转账
  • 事务api

    try {
        //开启事务
        db.beginTransaction();
        ...........
        //设置事务执行成功
        db.setTransactionSuccessful();
    } finally{
        //关闭事务
        //如果此时已经设置事务执行成功,则sql语句生效,否则不生效
        db.endTransaction();
    }

数据库的数据显示至屏幕

  1. 任意插入一些数据
  2. 定义业务bean:Person.java
  3. 读取数据库的所有数据

    Cursor cs = db.query("person",null);
    while(cs.movetoNext()){
        String name = cs.getString(cs.getColumnIndex("name"));
        String phone = cs.getString(cs.getColumnIndex("phone"));
        String money = cs.getString(cs.getColumnIndex("money"));
        //把读到的数据封装至Person对象
        Person p = new Person(name,money);
        //把person对象保存至集合中
        people.add(p);
    }
  4. 把集合中的数据显示至屏幕

    LinearLayout ll = (LinearLayout) findViewById(R.id.ll);
     for(Person p : people){
         //创建TextView,每条数据用一个文本框显示
         TextView tv = new TextView(this);
         tv.setText(p.toString());
         //把文本框设置为ll的子节点
         ll.addView(tv);
     }
  5. 分页查询

    ottom:15px; margin-left:0px; padding-top:6px; padding-right:10px; padding-bottom:6px; padding-left:10px; border-top-width:1px; border-right-width:1px; border-bottom-width:1px; border-left-width:1px; border-style:initial; border-color:initial; font-size:13px; font-family:Consolas,"0,10");

相关文章

SQLite架构简单,又有Json计算能力,有时会承担Json文件/RES...
使用Python操作内置数据库SQLite以及MySQL数据库。
破解微信数据库密码,用python导出微信聊天记录
(Unity)SQLite 是一个软件库,实现了自给自足的、无服务器...
安卓开发,利用SQLite实现登陆注册功能