Skip to content

Instantly share code, notes, and snippets.

@hacksoldier
Last active December 28, 2015 18:19
Show Gist options
  • Save hacksoldier/7542703 to your computer and use it in GitHub Desktop.
Save hacksoldier/7542703 to your computer and use it in GitHub Desktop.
[DATABASE] Open DB
- (void) openDB {
//-- Create Database --
if (sqlite3_open([[self filePath] UTF8String], &(db)) != SQLITE_OK) {
sqlite3_close(db);
WITH_LOG ? NSLog(@"Database falied to open.") : nil;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment