安卓实战开发之SQLite从简单使用crud
Posted Losileeya
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安卓实战开发之SQLite从简单使用crud相关的知识,希望对你有一定的参考价值。
前言
最近项目忙,然后呢很久没有更新博客了,react-native也是没有时间学习,然后项目里面用到了数据持久化(数据存储),android系统中主要提供了三种数据持久化方式:文件存储、SharedPreference存储、数据库存储。说实在的毕竟app这种轻量级的使用数据库还是不多,然后呢要使用数据库也是在特定场合,这也导致了很多的移动端开发(对数据库操作不多)对数据库使用不太熟练。
应用场景
一般我们都不使用数据库的,基本上使用SharedPreference就能处理大部分问题,然后在特定场合比如做商城类资讯类及三级缓存图片地址时候就可能需要使用数据库,真到用的时候就要google和baidu了,对于数据简单并且不需要频繁操作数据的我们就参考下别人demo好了,然后数据存储量大比如新闻、缓存的离线天气、商品列表等我们就不得不去考虑性能了,然后开发就要考虑时间和性能你可能会使用greenDao、LitePal、realm。
效果如下:
简单使用SQLite用例
1.创建SQLite数据库:
public MyDatabaseHelper(Context context, String name, CursorFactory factory, int version) {
super(context, name, factory, version);
}
public void onCreate(SQLiteDatabase db) {
db.execSQL(CREATE_BOOK);
}
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
}
2.升级SQLite数据库
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
db.execSQL("drop table if exists ***");
db.execSQL("drop table if exists ***");
onCreate(db);
}
3.在活动中创建SQLiteOpenHelper实现类的实例,调用其getWritableDatabase()方法;
MyDatabaseHelper dbHelper = new MyDatabaseHelper(this, "**.db", null, 1);
dbHelper.getWritableDatabase();
4.CRUD操作
CRUD我们可以通过像java使用hibernate样既可以执行原生的sql语句(db.execSQL(**))也可以执行自带的封装语句ad.insert。
- insert()
添加(Create):先将数据添加至ContentValues对象,然后调用insert()方法。
ContentValues values = new ContentValues();
values.put("key1", value1);
values.put("key2", value2);
values.put("key3", value3);
db.insert("table", null, values);
values.clear();
- query()
查询(Retrieve):query()方法用于对数据进行查询,但即使是其最短的重载方法也有7个参数,其定义为:
Cursor query(String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy)
- update()
更新(Update):update()方法用于对数据进行更新,接收4个参数:
public int update (String table, ContentValues values, String whereClause, String[] whereArgs)
- delete()
删除(Delete):delete()方法用于删除数据,接收3个参数:
public int delete (String table, String whereClause, String[] whereArgs)
Sqlite项目简单使用详解
创建数据库:
package com.losileeya.dbsimple.db;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.util.Log;
public class MyHelper extends SQLiteOpenHelper {
private static String DB_NAME = "mydata.db"; //数据库名称
public static String TABLE_NAME = "employee"; //表名
/**super(参数1,参数2,参数3,参数4),其中参数4是代表数据库的版本,
* 是一个大于等于1的整数,如果要修改(添加字段)表中的字段,则设置
* 一个比当前的 参数4大的整数 ,把更新的语句写在onUpgrade(),下一次
* 调用
*/
public MyHelper(Context context) {
super(context, DB_NAME, null, 2);
}
@Override
public void onCreate(SQLiteDatabase db) {
//Create table
String sql = "CREATE TABLE "+TABLE_NAME + "("
+ "_id INTEGER PRIMARY KEY,"
+ "name TEXT,"
+ "sex TEXT);";
Log.e("table oncreate", "create table");
db.execSQL(sql); //创建表
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
// TODO Auto-generated method stub
Log.e("update", "update");
// db.execSQL("ALTER TABLE "+ MyHelper.TABLE_NAME+" ADD sex TEXT"); //修改字段
String sql = "DROP TABLE IF EXISTS " + TABLE_NAME;
db.execSQL(sql);
this.onCreate(db);
}
}
实际数据操作,进行crud
package com.losileeya.dbsimple.db;
import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.SQLException;
import android.database.sqlite.SQLiteDatabase;
import android.util.Log;
import com.losileeya.dbsimple.bean.Person;
import java.util.ArrayList;
import java.util.List;
public class DatabaseUtil {
private MyHelper helper;
private SQLiteDatabase db;
public DatabaseUtil(Context context) {
super();
helper = new MyHelper(context);
db = helper.getWritableDatabase();
}
/**
* 插入数据
*
* param String
* */
public boolean Insert(Person person) {
// String sql = "insert into " + MyHelper.TABLE_NAME
// + "(name,sex) values (" + "'" + person.getName() + "' ," + "'"
// + person.getSex() + "'" + ")";
//
// try {
// db.execSQL(sql);
// return true;
// } catch (SQLException e) {
// Log.e("err", "insert failed");
// return false;
// } finally {
// db.close();
// }
ContentValues values = new ContentValues();
values.put("name", person.getName());
values.put("sex", person.getSex());
try {
db.insert("employee", null, values);
return true;
} catch (SQLException e) {
Log.e("err", "insert failed");
return false;
}
}
/**
* 更新数据
*
* param Person
* person , int id
* */
public void Update(Person person, int id) {
ContentValues values = new ContentValues();
values.put("name", person.getName());
values.put("sex", person.getSex());
int rows = db.update(MyHelper.TABLE_NAME, values, "_id=?",
new String[] { id + "" });
}
/**
* 删除数据
*
* param int id
* */
public void Delete(int id) {
int raw = db.delete(MyHelper.TABLE_NAME, "_id=?", new String[] { id
+ "" });
}
/**
* 查询所有数据
*
* */
public List<Person> queryAll() {
List<Person> list = new ArrayList<Person>();
Cursor cursor = db.query(MyHelper.TABLE_NAME, null, null, null, null,
null, null);
while (cursor.moveToNext()) {
Person person = new Person();
person.setId(cursor.getInt(cursor.getColumnIndex("_id")));
person.setName(cursor.getString(cursor.getColumnIndex("name")));
person.setSex(cursor.getString(cursor.getColumnIndex("sex")));
list.add(person);
}
return list;
}
/**
* 按姓名进行查找并排序
*
* */
public List<Person> queryByname(String name) {
List<Person> list = new ArrayList<Person>();
Cursor cursor = db.query(MyHelper.TABLE_NAME, new String[] { "_id",
"name", "sex" }, "name like ? ", new String[] { "%" + name
+ "%" }, null, null, "name asc");
while (cursor.moveToNext()) {
Person person = new Person();
person.setId(cursor.getInt(cursor.getColumnIndex("_id")));
person.setName(cursor.getString(cursor.getColumnIndex("name")));
person.setSex(cursor.getString(cursor.getColumnIndex("sex")));
list.add(person);
}
return list;
}
/**
* 按id查询
*
* */
public Person queryByid(int id) {
Person person = new Person();
Cursor cursor = db.query(MyHelper.TABLE_NAME, new String[] { "name",
"sex" }, "_id=?", new String[] { id + "" }, null, null, null);
while (cursor.moveToNext()) {
person.setId(id);
person.setName(cursor.getString(cursor.getColumnIndex("name")));
person.setSex(cursor.getString(cursor.getColumnIndex("sex")));
}
return person;
}
public void close() {
if (db != null) {
db.close();
}
}
}
然后使用数据库千万记得要加权限:
<!-- 添加SD卡读写权限 -->
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/>
注意:我们使用数据库的时候很容易因为手动关闭数据库,然后再次操作时出现错误,所以呢我们应该在数据库操作帮助类添加关闭方法,然后在activity销毁时候调用 。
当然如果你项目中可能使用到把数据库导出为excel表格的功能:
package com.losileeya.dbsimple.tools;
import android.os.Environment;
import com.losileeya.dbsimple.bean.Person;
import java.io.File;
import java.util.List;
import jxl.Workbook;
import jxl.write.Label;
import jxl.write.WritableSheet;
import jxl.write.WritableWorkbook;
public class JxlUtil {
/**
* 导出生成excel文件,存放于SD卡中
* @author smart *
*/
private List<Person> list;
public JxlUtil(List<Person> list){
this.list = list;
}
public boolean toExcel() {
// 准备设置excel工作表的标题
String[] title = { "编号", "姓名", "性别" };
try {
// 获得开始时间
long start = System.currentTimeMillis();
//判断SD卡是否存在
if(!Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)){
return false;
}
String SDdir = Environment.getExternalStorageDirectory().toString(); //获取SD卡的根目录
// 创建Excel工作薄
WritableWorkbook wwb;
// 在SD卡中,新建立一个名为person的jxl文件
wwb = Workbook.createWorkbook(new File(Environment.getExternalStorageDirectory().getAbsolutePath() + "/person.xls"));
// 添加第一个工作表并设置第一个Sheet的名字
WritableSheet sheet = wwb.createSheet("员工清单", 0);
Label label;
for (int i = 0; i < title.length; i++) {
label = new Label(i, 0, title[i]);
// 将定义好的单元格添加到工作表中
sheet.addCell(label);
}
/*
* 保存数字到单元格,需要使用jxl.write.Number 必须使用其完整路径,否则会出现错误
*/
for(int i = 0 ; i < list.size(); i++){
Person person = list.get(i);
//添加编号
jxl.write.Number number = new jxl.write.Number(0, i+1, person.getId());
sheet.addCell(number);
//添加姓名
label = new Label(1,i+1,person.getName());
sheet.addCell(label);
//添加性别
label = new Label(2,i+1,person.getSex());
sheet.addCell(label);
}
wwb.write(); //写入数据
wwb.close(); //关闭文件
} catch (Exception e) {
e.printStackTrace();
}
return true;
}
}
实现这样一个功能你需要准备一个jxl.jar,过多的解释不多说。
可能大多数的情况下我们的数据一般from网络,下一篇我们就来对数据库进行封装提高一下数据库的使用效率。
demo 传送门:DbMaster
以上是关于安卓实战开发之SQLite从简单使用crud的主要内容,如果未能解决你的问题,请参考以下文章
跟老杜从零入门MyBatis到架构思维使用MyBatis完成CRUD- insert(Create)