Android中SQLite应用具体解释

时间:2021-09-01 05:23:46

如今的主流移动设备像Android、iPhone等都使用SQLite作为复杂数据的存储引擎,在我们为移动设备开发应用程序时,或许就要使用到SQLite来存储我们大量的数据,所以我们就须要掌握移动设备上的SQLite开发技巧。对于Android平台来说,系统内置了丰富的API来供开发者操作SQLite。我们能够轻松的完毕对数据的存取。

以下就向大家介绍一下SQLite经常使用的操作方法。为了方便,我将代码写在了Activity的onCreate中:

  1. @Override
  2. protected void onCreate(Bundle savedInstanceState) {
  3. super.onCreate(savedInstanceState);
  4. //打开或创建test.db数据库
  5. SQLiteDatabase db = openOrCreateDatabase("test.db", Context.MODE_PRIVATE, null);
  6. db.execSQL("DROP TABLE IF EXISTS person");
  7. //创建person表
  8. db.execSQL("CREATE TABLE person (_id INTEGER PRIMARY KEY AUTOINCREMENT, name VARCHAR, age SMALLINT)");
  9. Person person = new Person();
  10. person.name = "john";
  11. person.age = 30;
  12. //插入数据
  13. db.execSQL("INSERT INTO person VALUES (NULL, ?, ?

    )", new Object[]{person.name, person.age});

  14. person.name = "david";
  15. person.age = 33;
  16. //ContentValues以键值对的形式存放数据
  17. ContentValues cv = new ContentValues();
  18. cv.put("name", person.name);
  19. cv.put("age", person.age);
  20. //插入ContentValues中的数据
  21. db.insert("person", null, cv);
  22. cv = new ContentValues();
  23. cv.put("age", 35);
  24. //更新数据
  25. db.update("person", cv, "name = ?

    ", new String[]{"john"});

  26. Cursor c = db.rawQuery("SELECT * FROM person WHERE age >= ?", new String[]{"33"});
  27. while (c.moveToNext()) {
  28. int _id = c.getInt(c.getColumnIndex("_id"));
  29. String name = c.getString(c.getColumnIndex("name"));
  30. int age = c.getInt(c.getColumnIndex("age"));
  31. Log.i("db", "_id=>" + _id + ", name=>" + name + ", age=>" + age);
  32. }
  33. c.close();
  34. //删除数据
  35. db.delete("person", "age < ?", new String[]{"35"});
  36. //关闭当前数据库
  37. db.close();
  38. //删除test.db数据库
  39. //      deleteDatabase("test.db");
  40. }
	@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState); //打开或创建test.db数据库
SQLiteDatabase db = openOrCreateDatabase("test.db", Context.MODE_PRIVATE, null);
db.execSQL("DROP TABLE IF EXISTS person");
//创建person表
db.execSQL("CREATE TABLE person (_id INTEGER PRIMARY KEY AUTOINCREMENT, name VARCHAR, age SMALLINT)");
Person person = new Person();
person.name = "john";
person.age = 30;
//插入数据
db.execSQL("INSERT INTO person VALUES (NULL, ? , ?)", new Object[]{person.name, person.age}); person.name = "david";
person.age = 33;
//ContentValues以键值对的形式存放数据
ContentValues cv = new ContentValues();
cv.put("name", person.name);
cv.put("age", person.age);
//插入ContentValues中的数据
db.insert("person", null, cv); cv = new ContentValues();
cv.put("age", 35);
//更新数据
db.update("person", cv, "name = ?", new String[]{"john"}); Cursor c = db.rawQuery("SELECT * FROM person WHERE age >= ?", new String[]{"33"});
while (c.moveToNext()) {
int _id = c.getInt(c.getColumnIndex("_id"));
String name = c.getString(c.getColumnIndex("name"));
int age = c.getInt(c.getColumnIndex("age"));
Log.i("db", "_id=>" + _id + ", name=>" + name + ", age=>" + age);
}
c.close(); //删除数据
db.delete("person", "age < ? ", new String[]{"35"}); //关闭当前数据库
db.close(); //删除test.db数据库
// deleteDatabase("test.db");
}

在运行完上面的代码后,系统就会在/data/data/[PACKAGE_NAME]/databases文件夹下生成一个“test.db”的数据库文件,如图:

Android中SQLite应用具体解释

上面的代码中基本上囊括了大部分的数据库操作。对于加入、更新和删除来说,我们都能够使用

  1. db.executeSQL(String sql);
  2. db.executeSQL(String sql, Object[] bindArgs);//sql语句中使用占位符,然后第二个參数是实际的參数集
db.executeSQL(String sql);
db.executeSQL(String sql, Object[] bindArgs);//sql语句中使用占位符,然后第二个參数是实际的參数集

除了统一的形式之外,他们还有各自的操作方法:

  1. db.insert(String table, String nullColumnHack, ContentValues values);
  2. db.update(String table, Contentvalues values, String whereClause, String whereArgs);
  3. db.delete(String table, String whereClause, String whereArgs);
db.insert(String table, String nullColumnHack, ContentValues values);
db.update(String table, Contentvalues values, String whereClause, String whereArgs);
db.delete(String table, String whereClause, String whereArgs);

以上三个方法的第一个參数都是表示要操作的表名。insert中的第二个參数表示假设插入的数据每一列都为空的话。须要指定此行中某一列的名称,系统将此列设置为NULL。不至于出现错误。insert中的第三个參数是ContentValues类型的变量,是键值对组成的Map,key代表列名。value代表该列要插入的值;update的第二个參数也非常类似。仅仅只是它是更新该字段key为最新的value值。第三个參数whereClause表示WHERE表达式,比方“age > ? and age
< ?”等,最后的whereArgs參数是占位符的实际參数值;delete方法的參数也是一样。

以下来说说查询操作。

查询操作相对于上面的几种操作要复杂些,由于我们常常要面对着各种各样的查询条件,所以系统也考虑到这样的复杂性,为我们提供了较为丰富的查询形式:

  1. db.rawQuery(String sql, String[] selectionArgs);
  2. db.query(String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy);
  3. db.query(String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit);
  4. db.query(String distinct, String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit);
db.rawQuery(String sql, String[] selectionArgs);
db.query(String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy);
db.query(String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit);
db.query(String distinct, String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit);

上面几种都是经常使用的查询方法,第一种最为简单,将全部的SQL语句都组织到一个字符串中,使用占位符取代实际參数。selectionArgs就是占位符实际參数集;以下的几种參数都非常类似,columns表示要查询的列全部名称集,selection表示WHERE之后的条件语句,能够使用占位符。groupBy指定分组的列名,having指定分组条件,配合groupBy使用。orderBy指定排序的列名,limit指定分页參数。distinct能够指定“true”或“false”表示要不要过滤反复值。须要注意的是,selection、groupBy、having、orderBy、limit这几个參数中不包含“WHERE”、“GROUP
BY”、“HAVING”、“ORDER BY”、“LIMIT”等SQLkeyword。

最后。他们同一时候返回一个Cursor对象,代表数据集的游标,有点类似于JavaSE中的ResultSet。

以下是Cursor对象的经常用法:

  1. c.move(int offset); //以当前位置为參考,移动到指定行
  2. c.moveToFirst();    //移动到第一行
  3. c.moveToLast();     //移动到最后一行
  4. c.moveToPosition(int position); //移动到指定行
  5. c.moveToPrevious(); //移动到前一行
  6. c.moveToNext();     //移动到下一行
  7. c.isFirst();        //是否指向第一条
  8. c.isLast();     //是否指向最后一条
  9. c.isBeforeFirst();  //是否指向第一条之前
  10. c.isAfterLast();    //是否指向最后一条之后
  11. c.isNull(int columnIndex);  //指定列是否为空(列基数为0)
  12. c.isClosed();       //游标是否已关闭
  13. c.getCount();       //总数据项数
  14. c.getPosition();    //返回当前游标所指向的行数
  15. c.getColumnIndex(String columnName);//返回某列名相应的列索引值
  16. c.getString(int columnIndex);   //返回当前行指定列的值
c.move(int offset);	//以当前位置为參考,移动到指定行
c.moveToFirst(); //移动到第一行
c.moveToLast(); //移动到最后一行
c.moveToPosition(int position); //移动到指定行
c.moveToPrevious(); //移动到前一行
c.moveToNext(); //移动到下一行
c.isFirst(); //是否指向第一条
c.isLast(); //是否指向最后一条
c.isBeforeFirst(); //是否指向第一条之前
c.isAfterLast(); //是否指向最后一条之后
c.isNull(int columnIndex); //指定列是否为空(列基数为0)
c.isClosed(); //游标是否已关闭
c.getCount(); //总数据项数
c.getPosition(); //返回当前游标所指向的行数
c.getColumnIndex(String columnName);//返回某列名相应的列索引值
c.getString(int columnIndex); //返回当前行指定列的值

在上面的代码演示样例中,已经用到了这几个经常用法中的一些。关于很多其它的信息,大家能够參考官方文档中的说明。

最后当我们完毕了对数据库的操作后,记得调用SQLiteDatabase的close()方法释放数据库连接,否则easy出现SQLiteException。

上面就是SQLite的基本应用,但在实际开发中,为了可以更好的管理和维护数据库,我们会封装一个继承自SQLiteOpenHelper类的数据库操作类,然后以这个类为基础。再封装我们的业务逻辑方法。

以下。我们就以一个实例来解说详细的使用方法,我们新建一个名为db的项目,结构例如以下:

Android中SQLite应用具体解释

当中DBHelper继承了SQLiteOpenHelper,作为维护和管理数据库的基类,DBManager是建立在DBHelper之上。封装了经常使用的业务方法,Person是我们的person表相应的JavaBean。MainActivity就是我们显示的界面。

以下我们先来看一下DBHelper:

  1. package com.scott.db;
  2. import android.content.Context;
  3. import android.database.sqlite.SQLiteDatabase;
  4. import android.database.sqlite.SQLiteOpenHelper;
  5. public class DBHelper extends SQLiteOpenHelper {
  6. private static final String DATABASE_NAME = "test.db";
  7. private static final int DATABASE_VERSION = 1;
  8. public DBHelper(Context context) {
  9. //CursorFactory设置为null,使用默认值
  10. super(context, DATABASE_NAME, null, DATABASE_VERSION);
  11. }
  12. //数据库第一次被创建时onCreate会被调用
  13. @Override
  14. public void onCreate(SQLiteDatabase db) {
  15. db.execSQL("CREATE TABLE IF NOT EXISTS person" +
  16. "(_id INTEGER PRIMARY KEY AUTOINCREMENT, name VARCHAR, age INTEGER, info TEXT)");
  17. }
  18. //假设DATABASE_VERSION值被改为2,系统发现现有数据库版本号不同,即会调用onUpgrade
  19. @Override
  20. public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
  21. db.execSQL("ALTER TABLE person ADD COLUMN other STRING");
  22. }
  23. }
package com.scott.db;

import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper; public class DBHelper extends SQLiteOpenHelper { private static final String DATABASE_NAME = "test.db";
private static final int DATABASE_VERSION = 1; public DBHelper(Context context) {
//CursorFactory设置为null,使用默认值
super(context, DATABASE_NAME, null, DATABASE_VERSION);
} //数据库第一次被创建时onCreate会被调用
@Override
public void onCreate(SQLiteDatabase db) {
db.execSQL("CREATE TABLE IF NOT EXISTS person" +
"(_id INTEGER PRIMARY KEY AUTOINCREMENT, name VARCHAR, age INTEGER, info TEXT)");
} //假设DATABASE_VERSION值被改为2,系统发现现有数据库版本号不同,即会调用onUpgrade
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
db.execSQL("ALTER TABLE person ADD COLUMN other STRING");
}
}

正如上面所述,数据库第一次创建时onCreate方法会被调用,我们能够运行创建表的语句,当系统发现版本号变化之后。会调用onUpgrade方法。我们能够运行改动表结构等语句。

为了方便我们面向对象的使用数据,我们建一个Person类,相应person表中的字段,例如以下:

  1. package com.scott.db;
  2. public class Person {
  3. public int _id;
  4. public String name;
  5. public int age;
  6. public String info;
  7. public Person() {
  8. }
  9. public Person(String name, int age, String info) {
  10. this.name = name;
  11. this.age = age;
  12. this.info = info;
  13. }
  14. }
package com.scott.db;

public class Person {
public int _id;
public String name;
public int age;
public String info; public Person() {
} public Person(String name, int age, String info) {
this.name = name;
this.age = age;
this.info = info;
}
}

然后,我们须要一个DBManager。来封装我们全部的业务方法。代码例如以下:

  1. package com.scott.db;
  2. import java.util.ArrayList;
  3. import java.util.List;
  4. import android.content.ContentValues;
  5. import android.content.Context;
  6. import android.database.Cursor;
  7. import android.database.sqlite.SQLiteDatabase;
  8. public class DBManager {
  9. private DBHelper helper;
  10. private SQLiteDatabase db;
  11. public DBManager(Context context) {
  12. helper = new DBHelper(context);
  13. //由于getWritableDatabase内部调用了mContext.openOrCreateDatabase(mName, 0, mFactory);
  14. //所以要确保context已初始化,我们能够把实例化DBManager的步骤放在Activity的onCreate里
  15. db = helper.getWritableDatabase();
  16. }
  17. /**
  18. * add persons
  19. * @param persons
  20. */
  21. public void add(List<Person> persons) {
  22. db.beginTransaction();  //開始事务
  23. try {
  24. for (Person person : persons) {
  25. db.execSQL("INSERT INTO person VALUES(null, ?

    , ?

    , ?)", new Object[]{person.name, person.age, person.info});

  26. }
  27. db.setTransactionSuccessful();  //设置事务成功完毕
  28. } finally {
  29. db.endTransaction();    //结束事务
  30. }
  31. }
  32. /**
  33. * update person's age
  34. * @param person
  35. */
  36. public void updateAge(Person person) {
  37. ContentValues cv = new ContentValues();
  38. cv.put("age", person.age);
  39. db.update("person", cv, "name = ?", new String[]{person.name});
  40. }
  41. /**
  42. * delete old person
  43. * @param person
  44. */
  45. public void deleteOldPerson(Person person) {
  46. db.delete("person", "age >= ?", new String[]{String.valueOf(person.age)});
  47. }
  48. /**
  49. * query all persons, return list
  50. * @return List<Person>
  51. */
  52. public List<Person> query() {
  53. ArrayList<Person> persons = new ArrayList<Person>();
  54. Cursor c = queryTheCursor();
  55. while (c.moveToNext()) {
  56. Person person = new Person();
  57. person._id = c.getInt(c.getColumnIndex("_id"));
  58. person.name = c.getString(c.getColumnIndex("name"));
  59. person.age = c.getInt(c.getColumnIndex("age"));
  60. person.info = c.getString(c.getColumnIndex("info"));
  61. persons.add(person);
  62. }
  63. c.close();
  64. return persons;
  65. }
  66. /**
  67. * query all persons, return cursor
  68. * @return  Cursor
  69. */
  70. public Cursor queryTheCursor() {
  71. Cursor c = db.rawQuery("SELECT * FROM person", null);
  72. return c;
  73. }
  74. /**
  75. * close database
  76. */
  77. public void closeDB() {
  78. db.close();
  79. }
  80. }
package com.scott.db;

import java.util.ArrayList;
import java.util.List; import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase; public class DBManager {
private DBHelper helper;
private SQLiteDatabase db; public DBManager(Context context) {
helper = new DBHelper(context);
//由于getWritableDatabase内部调用了mContext.openOrCreateDatabase(mName, 0, mFactory);
//所以要确保context已初始化,我们能够把实例化DBManager的步骤放在Activity的onCreate里
db = helper.getWritableDatabase();
} /**
* add persons
* @param persons
*/
public void add(List<Person> persons) {
db.beginTransaction(); //開始事务
try {
for (Person person : persons) {
db.execSQL("INSERT INTO person VALUES(null, ?, ?, ?)", new Object[]{person.name, person.age, person.info});
}
db.setTransactionSuccessful(); //设置事务成功完毕
} finally {
db.endTransaction(); //结束事务
}
} /**
* update person's age
* @param person
*/
public void updateAge(Person person) {
ContentValues cv = new ContentValues();
cv.put("age", person.age);
db.update("person", cv, "name = ?", new String[]{person.name});
} /**
* delete old person
* @param person
*/
public void deleteOldPerson(Person person) {
db.delete("person", "age >= ?", new String[]{String.valueOf(person.age)});
} /**
* query all persons, return list
* @return List<Person>
*/
public List<Person> query() {
ArrayList<Person> persons = new ArrayList<Person>();
Cursor c = queryTheCursor();
while (c.moveToNext()) {
Person person = new Person();
person._id = c.getInt(c.getColumnIndex("_id"));
person.name = c.getString(c.getColumnIndex("name"));
person.age = c.getInt(c.getColumnIndex("age"));
person.info = c.getString(c.getColumnIndex("info"));
persons.add(person);
}
c.close();
return persons;
} /**
* query all persons, return cursor
* @return Cursor
*/
public Cursor queryTheCursor() {
Cursor c = db.rawQuery("SELECT * FROM person", null);
return c;
} /**
* close database
*/
public void closeDB() {
db.close();
}
}

我们在DBManager构造方法中实例化DBHelper并获取一个SQLiteDatabase对象,作为整个应用的数据库实例;在加入多个Person信息时,我们採用了事务处理,确保数据完整性;最后我们提供了一个closeDB方法,释放数据库资源。这一个步骤在我们整个应用关闭时运行。这个环节easy被忘记,所以朋友们要注意。

我们获取数据库实例时使用了getWritableDatabase()方法。或许朋友们会有疑问,在getWritableDatabase()和getReadableDatabase()中,你为什么选择前者作为整个应用的数据库实例呢?在这里我想和大家着重分析一下这一点。

我们来看一下SQLiteOpenHelper中的getReadableDatabase()方法:

  1. public synchronized SQLiteDatabase getReadableDatabase() {
  2. if (mDatabase != null && mDatabase.isOpen()) {
  3. // 假设发现mDatabase不为空而且已经打开则直接返回
  4. return mDatabase;
  5. }
  6. if (mIsInitializing) {
  7. // 假设正在初始化则抛出异常
  8. throw new IllegalStateException("getReadableDatabase called recursively");
  9. }
  10. // 開始实例化数据库mDatabase
  11. try {
  12. // 注意这里是调用了getWritableDatabase()方法
  13. return getWritableDatabase();
  14. } catch (SQLiteException e) {
  15. if (mName == null)
  16. throw e; // Can't open a temp database read-only!
  17. Log.e(TAG, "Couldn't open " + mName + " for writing (will try read-only):", e);
  18. }
  19. // 假设无法以可读写模式打开数据库 则以仅仅读方式打开
  20. SQLiteDatabase db = null;
  21. try {
  22. mIsInitializing = true;
  23. String path = mContext.getDatabasePath(mName).getPath();// 获取数据库路径
  24. // 以仅仅读方式打开数据库
  25. db = SQLiteDatabase.openDatabase(path, mFactory, SQLiteDatabase.OPEN_READONLY);
  26. if (db.getVersion() != mNewVersion) {
  27. throw new SQLiteException("Can't upgrade read-only database from version " + db.getVersion() + " to "
  28. + mNewVersion + ": " + path);
  29. }
  30. onOpen(db);
  31. Log.w(TAG, "Opened " + mName + " in read-only mode");
  32. mDatabase = db;// 为mDatabase指定新打开的数据库
  33. return mDatabase;// 返回打开的数据库
  34. } finally {
  35. mIsInitializing = false;
  36. if (db != null && db != mDatabase)
  37. db.close();
  38. }
  39. }
	public synchronized SQLiteDatabase getReadableDatabase() {
if (mDatabase != null && mDatabase.isOpen()) {
// 假设发现mDatabase不为空而且已经打开则直接返回
return mDatabase;
} if (mIsInitializing) {
// 假设正在初始化则抛出异常
throw new IllegalStateException("getReadableDatabase called recursively");
} // 開始实例化数据库mDatabase try {
// 注意这里是调用了getWritableDatabase()方法
return getWritableDatabase();
} catch (SQLiteException e) {
if (mName == null)
throw e; // Can't open a temp database read-only!
Log.e(TAG, "Couldn't open " + mName + " for writing (will try read-only):", e);
} // 假设无法以可读写模式打开数据库 则以仅仅读方式打开 SQLiteDatabase db = null;
try {
mIsInitializing = true;
String path = mContext.getDatabasePath(mName).getPath();// 获取数据库路径
// 以仅仅读方式打开数据库
db = SQLiteDatabase.openDatabase(path, mFactory, SQLiteDatabase.OPEN_READONLY);
if (db.getVersion() != mNewVersion) {
throw new SQLiteException("Can't upgrade read-only database from version " + db.getVersion() + " to "
+ mNewVersion + ": " + path);
} onOpen(db);
Log.w(TAG, "Opened " + mName + " in read-only mode");
mDatabase = db;// 为mDatabase指定新打开的数据库
return mDatabase;// 返回打开的数据库
} finally {
mIsInitializing = false;
if (db != null && db != mDatabase)
db.close();
}
}

在getReadableDatabase()方法中,首先推断是否已存在数据库实例而且是打开状态,假设是。则直接返回该实例。否则试图获取一个可读写模式的数据库实例,假设遇到磁盘空间已满等情况获取失败的话,再以仅仅读模式打开数据库,获取数据库实例并返回,然后为mDatabase赋值为最新打开的数据库实例。

既然有可能调用到getWritableDatabase()方法,我们就要看一下了:

  1. public synchronized SQLiteDatabase getWritableDatabase() {
  2. if (mDatabase != null && mDatabase.isOpen() && !mDatabase.isReadOnly()) {
  3. // 假设mDatabase不为空已打开而且不是仅仅读模式 则返回该实例
  4. return mDatabase;
  5. }
  6. if (mIsInitializing) {
  7. throw new IllegalStateException("getWritableDatabase called recursively");
  8. }
  9. // If we have a read-only database open, someone could be using it
  10. // (though they shouldn't), which would cause a lock to be held on
  11. // the file, and our attempts to open the database read-write would
  12. // fail waiting for the file lock. To prevent that, we acquire the
  13. // lock on the read-only database, which shuts out other users.
  14. boolean success = false;
  15. SQLiteDatabase db = null;
  16. // 假设mDatabase不为空则加锁 阻止其它的操作
  17. if (mDatabase != null)
  18. mDatabase.lock();
  19. try {
  20. mIsInitializing = true;
  21. if (mName == null) {
  22. db = SQLiteDatabase.create(null);
  23. } else {
  24. // 打开或创建数据库
  25. db = mContext.openOrCreateDatabase(mName, 0, mFactory);
  26. }
  27. // 获取数据库版本号(假设刚创建的数据库,版本号为0)
  28. int version = db.getVersion();
  29. // 比較版本号(我们代码中的版本号mNewVersion为1)
  30. if (version != mNewVersion) {
  31. db.beginTransaction();// 開始事务
  32. try {
  33. if (version == 0) {
  34. // 运行我们的onCreate方法
  35. onCreate(db);
  36. } else {
  37. // 假设我们应用升级了mNewVersion为2,而原版本号为1则运行onUpgrade方法
  38. onUpgrade(db, version, mNewVersion);
  39. }
  40. db.setVersion(mNewVersion);// 设置最新版本号
  41. db.setTransactionSuccessful();// 设置事务成功
  42. } finally {
  43. db.endTransaction();// 结束事务
  44. }
  45. }
  46. onOpen(db);
  47. success = true;
  48. return db;// 返回可读写模式的数据库实例
  49. } finally {
  50. mIsInitializing = false;
  51. if (success) {
  52. // 打开成功
  53. if (mDatabase != null) {
  54. // 假设mDatabase有值则先关闭
  55. try {
  56. mDatabase.close();
  57. } catch (Exception e) {
  58. }
  59. mDatabase.unlock();// 解锁
  60. }
  61. mDatabase = db;// 赋值给mDatabase
  62. } else {
  63. // 打开失败的情况:解锁、关闭
  64. if (mDatabase != null)
  65. mDatabase.unlock();
  66. if (db != null)
  67. db.close();
  68. }
  69. }
  70. }
	public synchronized SQLiteDatabase getWritableDatabase() {
if (mDatabase != null && mDatabase.isOpen() && !mDatabase.isReadOnly()) {
// 假设mDatabase不为空已打开而且不是仅仅读模式 则返回该实例
return mDatabase;
} if (mIsInitializing) {
throw new IllegalStateException("getWritableDatabase called recursively");
} // If we have a read-only database open, someone could be using it
// (though they shouldn't), which would cause a lock to be held on
// the file, and our attempts to open the database read-write would
// fail waiting for the file lock. To prevent that, we acquire the
// lock on the read-only database, which shuts out other users. boolean success = false;
SQLiteDatabase db = null;
// 假设mDatabase不为空则加锁 阻止其它的操作
if (mDatabase != null)
mDatabase.lock();
try {
mIsInitializing = true;
if (mName == null) {
db = SQLiteDatabase.create(null);
} else {
// 打开或创建数据库
db = mContext.openOrCreateDatabase(mName, 0, mFactory);
}
// 获取数据库版本号(假设刚创建的数据库,版本号为0)
int version = db.getVersion();
// 比較版本号(我们代码中的版本号mNewVersion为1)
if (version != mNewVersion) {
db.beginTransaction();// 開始事务
try {
if (version == 0) {
// 运行我们的onCreate方法
onCreate(db);
} else {
// 假设我们应用升级了mNewVersion为2,而原版本号为1则运行onUpgrade方法
onUpgrade(db, version, mNewVersion);
}
db.setVersion(mNewVersion);// 设置最新版本号
db.setTransactionSuccessful();// 设置事务成功
} finally {
db.endTransaction();// 结束事务
}
} onOpen(db);
success = true;
return db;// 返回可读写模式的数据库实例
} finally {
mIsInitializing = false;
if (success) {
// 打开成功
if (mDatabase != null) {
// 假设mDatabase有值则先关闭
try {
mDatabase.close();
} catch (Exception e) {
}
mDatabase.unlock();// 解锁
}
mDatabase = db;// 赋值给mDatabase
} else {
// 打开失败的情况:解锁、关闭
if (mDatabase != null)
mDatabase.unlock();
if (db != null)
db.close();
}
}
}

大家能够看到。几个关键步骤是,首先推断mDatabase假设不为空已打开并非仅仅读模式则直接返回。否则假设mDatabase不为空则加锁,然后開始打开或创建数据库,比較版本号,依据版本号号来调用对应的方法,为数据库设置新版本号号。最后释放旧的不为空的mDatabase并解锁,把新打开的数据库实例赋予mDatabase,并返回最新实例。

看完上面的过程之后,大家也许就清楚了很多,假设不是在遇到磁盘空间已满等情况,getReadableDatabase()一般都会返回和getWritableDatabase()一样的数据库实例,所以我们在DBManager构造方法中使用getWritableDatabase()获取整个应用所使用的数据库实例是可行的。当然假设你真的操心这样的情况会发生,那么你能够先用getWritableDatabase()获取数据实例,假设遇到异常,再试图用getReadableDatabase()获取实例,当然这个时候你获取的实例仅仅能读不能写了。

最后,让我们看一下怎样使用这些数据操作方法来显示数据,以下是MainActivity.java的布局文件和代码:

  1. <?

    xml version="1.0" encoding="utf-8"?>

  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical"
  4. android:layout_width="fill_parent"
  5. android:layout_height="fill_parent">
  6. <Button
  7. android:layout_width="fill_parent"
  8. android:layout_height="wrap_content"
  9. android:text="add"
  10. android:onClick="add"/>
  11. <Button
  12. android:layout_width="fill_parent"
  13. android:layout_height="wrap_content"
  14. android:text="update"
  15. android:onClick="update"/>
  16. <Button
  17. android:layout_width="fill_parent"
  18. android:layout_height="wrap_content"
  19. android:text="delete"
  20. android:onClick="delete"/>
  21. <Button
  22. android:layout_width="fill_parent"
  23. android:layout_height="wrap_content"
  24. android:text="query"
  25. android:onClick="query"/>
  26. <Button
  27. android:layout_width="fill_parent"
  28. android:layout_height="wrap_content"
  29. android:text="queryTheCursor"
  30. android:onClick="queryTheCursor"/>
  31. <ListView
  32. android:id="@+id/listView"
  33. android:layout_width="fill_parent"
  34. android:layout_height="wrap_content"/>
  35. </LinearLayout>
<?xml version="1.0" encoding="utf-8"?

>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="add"
android:onClick="add"/>
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="update"
android:onClick="update"/>
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="delete"
android:onClick="delete"/>
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="query"
android:onClick="query"/>
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="queryTheCursor"
android:onClick="queryTheCursor"/>
<ListView
android:id="@+id/listView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
  1. package com.scott.db;
  2. import java.util.ArrayList;
  3. import java.util.HashMap;
  4. import java.util.List;
  5. import java.util.Map;
  6. import android.app.Activity;
  7. import android.database.Cursor;
  8. import android.database.CursorWrapper;
  9. import android.os.Bundle;
  10. import android.view.View;
  11. import android.widget.ListView;
  12. import android.widget.SimpleAdapter;
  13. import android.widget.SimpleCursorAdapter;
  14. public class MainActivity extends Activity {
  15. private DBManager mgr;
  16. private ListView listView;
  17. @Override
  18. public void onCreate(Bundle savedInstanceState) {
  19. super.onCreate(savedInstanceState);
  20. setContentView(R.layout.main);
  21. listView = (ListView) findViewById(R.id.listView);
  22. //初始化DBManager
  23. mgr = new DBManager(this);
  24. }
  25. @Override
  26. protected void onDestroy() {
  27. super.onDestroy();
  28. //应用的最后一个Activity关闭时应释放DB
  29. mgr.closeDB();
  30. }
  31. public void add(View view) {
  32. ArrayList<Person> persons = new ArrayList<Person>();
  33. Person person1 = new Person("Ella", 22, "lively girl");
  34. Person person2 = new Person("Jenny", 22, "beautiful girl");
  35. Person person3 = new Person("Jessica", 23, "sexy girl");
  36. Person person4 = new Person("Kelly", 23, "hot baby");
  37. Person person5 = new Person("Jane", 25, "a pretty woman");
  38. persons.add(person1);
  39. persons.add(person2);
  40. persons.add(person3);
  41. persons.add(person4);
  42. persons.add(person5);
  43. mgr.add(persons);
  44. }
  45. public void update(View view) {
  46. Person person = new Person();
  47. person.name = "Jane";
  48. person.age = 30;
  49. mgr.updateAge(person);
  50. }
  51. public void delete(View view) {
  52. Person person = new Person();
  53. person.age = 30;
  54. mgr.deleteOldPerson(person);
  55. }
  56. public void query(View view) {
  57. List<Person> persons = mgr.query();
  58. ArrayList<Map<String, String>> list = new ArrayList<Map<String, String>>();
  59. for (Person person : persons) {
  60. HashMap<String, String> map = new HashMap<String, String>();
  61. map.put("name", person.name);
  62. map.put("info", person.age + " years old, " + person.info);
  63. list.add(map);
  64. }
  65. SimpleAdapter adapter = new SimpleAdapter(this, list, android.R.layout.simple_list_item_2,
  66. new String[]{"name", "info"}, new int[]{android.R.id.text1, android.R.id.text2});
  67. listView.setAdapter(adapter);
  68. }
  69. public void queryTheCursor(View view) {
  70. Cursor c = mgr.queryTheCursor();
  71. startManagingCursor(c); //委托给activity依据自己的生命周期去管理Cursor的生命周期
  72. CursorWrapper cursorWrapper = new CursorWrapper(c) {
  73. @Override
  74. public String getString(int columnIndex) {
  75. //将简单介绍前加上年龄
  76. if (getColumnName(columnIndex).equals("info")) {
  77. int age = getInt(getColumnIndex("age"));
  78. return age + " years old, " + super.getString(columnIndex);
  79. }
  80. return super.getString(columnIndex);
  81. }
  82. };
  83. //确保查询结果中有"_id"列
  84. SimpleCursorAdapter adapter = new SimpleCursorAdapter(this, android.R.layout.simple_list_item_2,
  85. cursorWrapper, new String[]{"name", "info"}, new int[]{android.R.id.text1, android.R.id.text2});
  86. ListView listView = (ListView) findViewById(R.id.listView);
  87. listView.setAdapter(adapter);
  88. }
  89. }
package com.scott.db;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map; import android.app.Activity;
import android.database.Cursor;
import android.database.CursorWrapper;
import android.os.Bundle;
import android.view.View;
import android.widget.ListView;
import android.widget.SimpleAdapter;
import android.widget.SimpleCursorAdapter; public class MainActivity extends Activity { private DBManager mgr;
private ListView listView; @Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
listView = (ListView) findViewById(R.id.listView);
//初始化DBManager
mgr = new DBManager(this);
} @Override
protected void onDestroy() {
super.onDestroy();
//应用的最后一个Activity关闭时应释放DB
mgr.closeDB();
} public void add(View view) {
ArrayList<Person> persons = new ArrayList<Person>(); Person person1 = new Person("Ella", 22, "lively girl");
Person person2 = new Person("Jenny", 22, "beautiful girl");
Person person3 = new Person("Jessica", 23, "sexy girl");
Person person4 = new Person("Kelly", 23, "hot baby");
Person person5 = new Person("Jane", 25, "a pretty woman"); persons.add(person1);
persons.add(person2);
persons.add(person3);
persons.add(person4);
persons.add(person5); mgr.add(persons);
} public void update(View view) {
Person person = new Person();
person.name = "Jane";
person.age = 30;
mgr.updateAge(person);
} public void delete(View view) {
Person person = new Person();
person.age = 30;
mgr.deleteOldPerson(person);
} public void query(View view) {
List<Person> persons = mgr.query();
ArrayList<Map<String, String>> list = new ArrayList<Map<String, String>>();
for (Person person : persons) {
HashMap<String, String> map = new HashMap<String, String>();
map.put("name", person.name);
map.put("info", person.age + " years old, " + person.info);
list.add(map);
}
SimpleAdapter adapter = new SimpleAdapter(this, list, android.R.layout.simple_list_item_2,
new String[]{"name", "info"}, new int[]{android.R.id.text1, android.R.id.text2});
listView.setAdapter(adapter);
} public void queryTheCursor(View view) {
Cursor c = mgr.queryTheCursor();
startManagingCursor(c); //委托给activity依据自己的生命周期去管理Cursor的生命周期
CursorWrapper cursorWrapper = new CursorWrapper(c) {
@Override
public String getString(int columnIndex) {
//将简单介绍前加上年龄
if (getColumnName(columnIndex).equals("info")) {
int age = getInt(getColumnIndex("age"));
return age + " years old, " + super.getString(columnIndex);
}
return super.getString(columnIndex);
}
};
//确保查询结果中有"_id"列
SimpleCursorAdapter adapter = new SimpleCursorAdapter(this, android.R.layout.simple_list_item_2,
cursorWrapper, new String[]{"name", "info"}, new int[]{android.R.id.text1, android.R.id.text2});
ListView listView = (ListView) findViewById(R.id.listView);
listView.setAdapter(adapter);
}
}

这里须要注意的是SimpleCursorAdapter的应用。当我们使用这个适配器时,我们必须先得到一个Cursor对象,这里面有几个问题:怎样管理Cursor的生命周期。假设包装Cursor。Cursor结果集都须要注意什么。

假设手动去管理Cursor的话会很的麻烦,另一定的风险,处理不当的话执行期间就会出现异常。幸好Activity为我们提供了startManagingCursor(Cursor cursor)方法。它会依据Activity的生命周期去管理当前的Cursor对象,以下是该方法的说明:

  1. /**
  2. * This method allows the activity to take care of managing the given
  3. * {@link Cursor}'s lifecycle for you based on the activity's lifecycle.
  4. * That is, when the activity is stopped it will automatically call
  5. * {@link Cursor#deactivate} on the given Cursor, and when it is later restarted
  6. * it will call {@link Cursor#requery} for you.  When the activity is
  7. * destroyed, all managed Cursors will be closed automatically.
  8. *
  9. * @param c The Cursor to be managed.
  10. *
  11. * @see #managedQuery(android.net.Uri , String[], String, String[], String)
  12. * @see #stopManagingCursor
  13. */
/**
* This method allows the activity to take care of managing the given
* {@link Cursor}'s lifecycle for you based on the activity's lifecycle.
* That is, when the activity is stopped it will automatically call
* {@link Cursor#deactivate} on the given Cursor, and when it is later restarted
* it will call {@link Cursor#requery} for you. When the activity is
* destroyed, all managed Cursors will be closed automatically.
*
* @param c The Cursor to be managed.
*
* @see #managedQuery(android.net.Uri , String[], String, String[], String)
* @see #stopManagingCursor
*/

文中提到,startManagingCursor方法会依据Activity的生命周期去管理当前的Cursor对象的生命周期。就是说当Activity停止时他会自己主动调用Cursor的deactivate方法,禁用游标。当Activity又一次回到屏幕时它会调用Cursor的requery方法再次查询。当Activity摧毁时,被管理的Cursor都会自己主动关闭释放。

怎样包装Cursor:我们会使用到CursorWrapper对象去包装我们的Cursor对象,实现我们须要的数据转换工作,这个CursorWrapper实际上是实现了Cursor接口。我们查询获取到的Cursor事实上是Cursor的引用,而系统实际返回给我们的必定是Cursor接口的一个实现类的对象实例。我们用CursorWrapper包装这个实例。然后再使用SimpleCursorAdapter将结果显示到列表上。

Cursor结果集须要注意些什么:一个最须要注意的是。在我们的结果集中必须要包括一个“_id”的列,否则SimpleCursorAdapter就会翻脸不认人,为什么一定要这样呢?由于这源于SQLite的规范,主键以“_id”为标准。解决的方法有三:第一,建表时依据规范去做;第二。查询时用别名,比如:SELECT id AS _id FROM person。第三。在CursorWrapper里做文章:

  1. CursorWrapper cursorWrapper = new CursorWrapper(c) {
  2. @Override
  3. public int getColumnIndexOrThrow(String columnName) throws IllegalArgumentException {
  4. if (columnName.equals("_id")) {
  5. return super.getColumnIndex("id");
  6. }
  7. return super.getColumnIndexOrThrow(columnName);
  8. }
  9. };
    	CursorWrapper cursorWrapper = new CursorWrapper(c) {
@Override
public int getColumnIndexOrThrow(String columnName) throws IllegalArgumentException {
if (columnName.equals("_id")) {
return super.getColumnIndex("id");
}
return super.getColumnIndexOrThrow(columnName);
}
};

假设试图从CursorWrapper里获取“_id”相应的列索引,我们就返回查询结果里“id”相应的列索引就可以。

最后我们来看一下结果怎样:

Android中SQLite应用具体解释

Android中SQLite应用具体解释

很多其它