<h2>FMDB</h2>
<h3>1.简介</h3>
<p><code>FMDB</code>是iOS平台的SQLite数据库框架,它是以OC的方式封装了SQLite的C语言API,它相对于cocoa自带的C语言框架有如下的优点: </p>
<ul>
<li>使用起来更加面向对象,省去了很多麻烦、冗余的C语言代码 </li>
<li>对比苹果自带的Core Data框架,更加轻量级和灵活 </li>
<li>提供了多线程安全的数据库操作方法,有效地防止数据混乱 </li>
</ul>
<p>注:<a href="https://github.com/ccgus/fmdb" target="_blank"><strong>FMDB的gitHub地址</strong></a> </p>
<h3>2.核心类</h3>
<p>FMDB有三个主要的类:</p>
<ul>
<li>
<p><strong>FMDatabase</strong>
一个FMDatabase对象就代表一个单独的SQLite数据库,用来执行SQL语句</p>
</li>
<li>
<p><strong>FMResultSet</strong>
使用FMDatabase执行查询后的结果集 </p>
</li>
<li>
<p><strong>FMDatabaseQueue</strong>
用于在多线程中执行多个查询或更新,它是线程安全的 </p>
</li>
</ul>
<h3>3.打开数据库</h3>
<p>和c语言框架一样,FMDB通过指定SQLite数据库文件路径来创建FMDatabase对象,但FMDB更加容易理解,使用起来更容易,<strong>使用之前一样需要导入<code>sqlite3.dylib</code></strong>。打开数据库方法如下: </p>
<pre><code class="objc">NSString *path = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES).firstObject stringByAppendingPathComponent:@"person.db"];
FMDatabase *database = [FMDatabase databaseWithPath:path];
if (![database open]) {
NSLog(@"数据库打开失败!");
}</code></pre>
<p>值得注意的是,Path的值可以传入以下三种情况: </p>
<ul>
<li>
<p>具体文件路径,如果不存在会自动创建</p>
</li>
<li>
<p>空字符串@"",会在临时目录创建一个空的数据库,当FMDatabase连接关闭时,数据库文件也被删除</p>
</li>
<li>
<p>nil,会创建一个内存中临时数据库,当FMDatabase连接关闭时,数据库会被销毁 </p>
</li>
</ul>
<h3>4.更新</h3>
<p>在FMDB中,除查询以外的所有操作,都称为“更新”, 如:create、drop、insert、update、delete等操作,使用<code>executeUpdate:</code>方法执行更新: </p>
<pre><code class="objc">//常用方法有以下3种:
- (BOOL)executeUpdate:(NSString*)sql, ...
- (BOOL)executeUpdateWithFormat:(NSString*)format, ...
- (BOOL)executeUpdate:(NSString*)sql withArgumentsInArray:(NSArray *)arguments
//示例
[database executeUpdate:@"CREATE TABLE IF NOT EXISTS t_person(id integer primary key autoincrement, name text, age integer)"];
//或者
[database executeUpdate:@"INSERT INTO t_person(name, age) VALUES(?, ?)", @"Bourne", [NSNumber numberWithInt:42]];</code></pre>
<h3>5.查询</h3>
<p>查询方法也有3种,使用起来相当简单: </p>
<pre><code class="objc">- (FMResultSet )executeQuery:(NSString)sql, ...
- (FMResultSet )executeQueryWithFormat:(NSString)format, ...
- (FMResultSet *)executeQuery:(NSString *)sql withArgumentsInArray:(NSArray *)arguments</code></pre>
<p>查询示例: </p>
<pre><code class="objc">//1.执行查询
FMResultSet *result = [database executeQuery:@"SELECT * FROM t_person"];
//2.遍历结果集
while ([result next]) {
NSString *name = [result stringForColumn:@"name"];
int age = [result intForColumn:@"age"];
}</code></pre>
<h3>6.线程安全</h3>
<p>在多个线程中同时使用一个FMDatabase实例是不明智的。不要让多个线程分享同一个FMDatabase实例,它无法在多个线程中同时使用。 如果在多个线程中同时使用一个FMDatabase实例,会造成数据混乱等问题。所以,请使用 FMDatabaseQueue,它是线程安全的。以下是使用方法:</p>
<ul>
<li>创建队列。</li>
</ul>
<pre><code class="objc">FMDatabaseQueue *queue = [FMDatabaseQueue databaseQueueWithPath:aPath];</code></pre>
<ul>
<li>使用队列</li>
</ul>
<pre><code class="objc">[queue inDatabase:^(FMDatabase *database) {
[database executeUpdate:@"INSERT INTO t_person(name, age) VALUES (?, ?)", @"Bourne_1", [NSNumber numberWithInt:1]];
[database executeUpdate:@"INSERT INTO t_person(name, age) VALUES (?, ?)", @"Bourne_2", [NSNumber numberWithInt:2]];
[database executeUpdate:@"INSERT INTO t_person(name, age) VALUES (?, ?)", @"Bourne_3", [NSNumber numberWithInt:3]];
FMResultSet *result = [database executeQuery:@"select * from t_person"];
while([result next]) {
}
}];</code></pre>
<p>而且可以轻松地把简单任务包装到事务里: </p>
<pre><code class="objc">[queue inTransaction:^(FMDatabase *database, BOOL *rollback) {
[database executeUpdate:@"INSERT INTO t_person(name, age) VALUES (?, ?)", @"Bourne_1", [NSNumber numberWithInt:1]];
[database executeUpdate:@"INSERT INTO t_person(name, age) VALUES (?, ?)", @"Bourne_2", [NSNumber numberWithInt:2]];
[database executeUpdate:@"INSERT INTO t_person(name, age) VALUES (?, ?)", @"Bourne_3", [NSNumber numberWithInt:3]];
FMResultSet *result = [database executeQuery:@"select * from t_person"];
while([result next]) {
}
//回滚
*rollback = YES;
}];</code></pre>
<p> FMDatabaseQueue 后台会建立系列化的G-C-D队列,并执行你传给G-C-D队列的块。这意味着 你从多线程同时调用调用方法,GDC也会按它接收的块的顺序来执行。</p>