# Android自助餐之SQLite
- [Android自助餐之SQLite](#)
- [一 惯用sql语句](#)
- [获取数据库操作对象](#)
- [创建表](#)
- [插入记录](#)
- [更新记录](#)
- [删除记录](#)
- [查询记录](#)
- [二 使用原生接口](#)
- [增删改查之外的操作](#)
- [插入记录](#)
- [更新记录](#)
- [删除记录](#)
- [查询记录](#)
### 一 惯用sql语句
### 1.获取数据库操作对象
`db=openOrCreateDatabase("SQLiteDB", Context.MODE_PRIVATE, null);`
打开一个具有读写权限的数据库`SQLiteDB`,若数据库不存在则创建一个。第一个参数为数据库名;第二个参数`Context.MODE_PRIVATE`表示所创建的数据库只允许创建者及与其同名的应用访问。第三个参数为`CursorFactory`。
> 也可以按照官方API提供的继承 `SQLiteOpenHelper`类并实例化一个对象,然后调用其`getWritableDatabase()`或`getReadableDatabase()`来获取数据库操作对象。
### 2.创建表
`db.execSQL("CREATE TABLE IF NOT EXISTS table(id VARCHAR,name VARCHAR,age VARCHAR)");`
`db.execSQL()`方法可以被用来执行所有sql语句。
### 3.插入记录
`db.execSQL("INSERT INTO table VALUES('"+entity.getId()+"','"+entity.getName()+"','"+entity.getAge()+"')");`
### 4.更新记录
`db.execSQL("UPDATE table SET id='"+entity.getId()+"',name='"+entity.getName()+"' WHERE age ='"+entity.getAge()+"'");`
### 5.删除记录
`db.execSQL("DELETE FROM table WHERE id='"+entity.getId()+"'");`
### 6.查询记录
~~~
Cursor c=db.rawQuery("SELECT * FROM table WHERE id='"+entity.getId()+"'", null);
if(c.moveToFirst())
{
entity.setName(c.getString(1));
entity.setAge(c.getString(2));
}
~~~
查询记录使用的是`rawQuery()`方法,返回值为一个`Cursor`对象,其中包含查询结果列表。当其中内容大于1时通过如下方式解析查询结果:
~~~
Cursor c=db.rawQuery("SELECT * FROM student", null);
if(c.getCount()==0)
{
showMessage("Error", "No records found");
return;
}
StringBuffer buffer=new StringBuffer();
while(c.moveToNext())
{
buffer.append("Id: "+c.getString(0)+"\n");
buffer.append("Name: "+c.getString(1)+"\n");
buffer.append("Age: "+c.getString(2)+"\n\n");
}
Log.e("Student Details", buffer.toString());
~~~
### 二 使用原生接口
### 1.增删改查之外的操作
按照官方api的说法,`execSQL(String sql,Object[] args)`不建议用来执行增删改查操作,倒是适用于
> ALTER TABLE
CREATE or DROP table / trigger / view / index / virtual table
REINDEX
RELEASE
SAVEPOINT
PRAGMA that returns no data
### 2.插入记录
~~~
ContentValues values = new ContentValues();
values.put("id", "id");
values.put("name", "name");
values.put("age", "age");
long rowid = db.insert("table", null, values);//返回新添记录的行号,与主键id无关
~~~
若`values`为空,会添加一条除主键之外其他字段值为`Null`的记录。
### 3.更新记录
~~~
ContentValues values = new ContentValues();
values.put(“name”, “name”);//key为字段名,value为值
db.update("table", values, "id=?", new String[]{"id"});
~~~
将id列值为id的记录中的name列的值改为name
### 4.删除记录
~~~
db.delete("table", "id=?", new String[]{"id"});
~~~
将id列的值为id的记录删除
### 5.查询记录
~~~
Cursor cursor = db.query("table", new String[]{"id,name,age"}, "name like ?", new String[]{"%me%"}, null, null, "id desc", null);
while (cursor.moveToNext()) {
String id = cursor.getString(0); //获取第一列的值,第一列的索引从0开始
String name = cursor.getString(1);//获取第二列的值
String age = cursor.getString(2);//获取第三列的值,若为int类型则写为cursor.getInt(2),注意参数仍是2
~~~
在table表中查找含有name列含有me的记录,结果根据id降序排列
`query(table, columns, selection, selectionArgs, groupBy, having, orderBy, limit)`各参数含义如下:
> table:所查询的表名。多表查询时,用逗号将两个表名分开。
columns:所查询的列名。sql语句中select后面的部分。
selection:查询条件,sql语句where后面的部分,可以使用“?”
selectionArgs:与selection中的”?”一一对应。
groupBy:sql语句group by后面的部分
having:sql语句having后面的部分
orderBy:sql语句order by后面的部分,desc降序, asc升序;
limit:偏移量及所需的记录数,sql语句limit后面的部分。