mirror of
https://github.com/darlinghq/fmdb.git
synced 2025-02-21 14:20:54 +00:00
Merge pull request #306 from nemesis/patch-1
Bump version in README.markdown
This commit is contained in:
commit
f6f96d44bf
@ -1,4 +1,4 @@
|
||||
# FMDB v2.3
|
||||
# FMDB v2.4
|
||||
This is an Objective-C wrapper around SQLite: http://sqlite.org/
|
||||
|
||||
## The FMDB Mailing List:
|
||||
@ -21,7 +21,10 @@ FMDB can be installed using [CocoaPods](http://cocoapods.org/).
|
||||
|
||||
```
|
||||
pod 'FMDB'
|
||||
# pod 'FMDB/SQLCipher' # If using FMDB with SQLCipher
|
||||
# pod 'FMDB/FTS' # FMDB with FTS
|
||||
# pod 'FMDB/standalone' # FMDB with latest SQLite amalgamation source
|
||||
# pod 'FMDB/standalone/FTS' # FMDB with latest SQLite amalgamation source and FTS
|
||||
# pod 'FMDB/SQLCipher' # FMDB with SQLCipher
|
||||
```
|
||||
|
||||
**If using FMDB with [SQLCipher](http://sqlcipher.net/) you must use the FMDB/SQLCipher subspec. The FMDB/SQLCipher subspec declares SQLCipher as a dependency, allowing FMDB to be compiled with the `-DSQLITE_HAS_CODEC` flag.**
|
||||
@ -136,7 +139,6 @@ success = [self.db executeStatements:sql withResultBlock:^int(NSDictionary *dict
|
||||
XCTAssertEqual(count, 1, @"expected one record for dictionary %@", dictionary);
|
||||
return 0;
|
||||
}];
|
||||
|
||||
```
|
||||
|
||||
### Data Sanitization
|
||||
|
Loading…
x
Reference in New Issue
Block a user