SQLite(FMDB) 线程安全 - 多线程处理

http://www.saick.net/blog/2013/12/12/sqlite-xian-cheng-an-quan-duo-xian-cheng-chu-li/


在iOS开发中,经常用到sqlite,CoreData也不错,但很多时候还是自己写sql,使用FMDB来处理。当然了,也可以不用FMDB,直接写处理,这个不解释。

但是,我们在数据库操作的时候,经常遇到多线程访问数据库的状况,常见的有几种处理方法

  • 1,NSLock或类似方法加锁
  • 2,FMDatabaseQueue
  • 3,sqlITE_CONFIG_SERIALIZED

下面我们来仔细看一下出现的问题以及相关的解决方

常见问题

以使用FMDB为例:

The debugger says that the error occurs at [FMResultSet next] at the line,hasEXC_BAD_ACCESS

1
rc = sqlite3_step(statement.statement);

多线程访问的时候,会在这里报错。

如何解决呢?

1. NSLock加锁(NSMutex)

详见苹果官方文档:Threading Programming Guide

2. FMDatabaseQueue

这个是我在某项目中用到的,所有查询都走这里。 可能因为项目较复杂,用了这个还是会时候有问题,但稳定很多。可以有一些别的地方调用,没查清楚。

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
// 相关引用 _fmQueue = [FMDatabaseQueue databaseQueueWithPath:sqlitePath];  // 查询数据 - (FMResultSet *)executeQueryWithsql:(NSString *)sql {  BFLogVerbose(@"executeQuery: %@",sql);   __block FMResultSet *rs = nil;  __block dispatch_semaphore_t sem = dispatch_semaphore_create(0);   [_fmQueue inDatabase:^(FMDatabase *fmdb){  FMResultSet *tmpRs = [fmdb executeQuery:sql];  rs = [FMResultSet resultSetWithStatement:tmpRs.statement usingParentDatabase:fmdb];  [tmpRs close];  dispatch_semaphore_signal(sem);  }];   dispatch_semaphore_wait(sem,DISPATCH_TIME_FOREVER);  dispatch_release(sem);   return rs; }

3. sqlITE_CONFIG_SERIALIZED

sqlite provides a much simpler serialization. By just setting the sqlite_config() option sqlITE_CONFIG_SERIALIZED you will probably avoid most of these kinds of headaches. I discovered this the hard way after fighting with threading issues for a long while.

3
if (sqlite3_config(sqlITE_CONFIG_SERIALIZED) == sqlITE_ERROR) {  NSLog(@"couldn't set serialized mode"); }

参考:http://stackoverflow.com/questions/3144700/exc-bad-access-when-using-sqlite-fmdb-and-threads-on-ios-4-0

相关文章

安装 在Windows上安装SQLite。 访问官网下载下Precompliled Binaries for Windows的两个压缩包。 创建s...
一、安装 下载地址:http://www.sqlite.org/download.html 将Precompiled Binaries for Windows下的包下...
实例: 会员信息管理 功能:1.查看数据库 2.清空数据库 3.增加会员 4.删除会员 5.更新会员 6.查找会员  ...
关于SQLite SQLite是一个轻量的、跨平台的、开源的数据库引擎,它的在读写效率、消耗总量、延迟时间和整...