Skip to content

Instantly share code, notes, and snippets.

@onlyyoujack
Forked from ccgus/gist:1740787
Created June 14, 2012 05:58
Show Gist options
  • Save onlyyoujack/2928210 to your computer and use it in GitHub Desktop.
Save onlyyoujack/2928210 to your computer and use it in GitHub Desktop.
OLD:
FMDatabase *db = [FMDatabase databaseWithPath:dbPath];
[db executeUpdate:@"insert into namedparamtest values (:a, :b, :c, :d)" withParameterDictionary:dictionaryArgs];
NEW:
FMDatabaseQueue *queue = [FMDatabaseQueue databaseQueueWithPath:dbPath];
[queue inDatabase:^(FMDatabase *db) {
[db executeUpdate:@"insert into namedparamtest values (:a, :b, :c, :d)" withParameterDictionary:dictionaryArgs];
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment