SQLiteManager4iOS
SQLiteManager4iOS copied to clipboard
SQLite Manager for iOS: an Obj-C wrapper for SQLite3
Hello, I tried exploring your library. Both add user & add table is working but I'm trying to retrieve all the added users. How can I code it?
Thanks for sharing! Need to add these requirement.
Thanks for library. But need to add database # pragma mark - # pragma mark - Copy DataBase Method -(void)copyDatabaseToDocumentDirectoryWithName:(NSString *)name { NSString *path = [[NSBundle mainBundle]pathForResource:[[name lastPathComponent]stringByDeletingPathExtension] ofType:[name pathExtension]];...
Please consider adding cocoapods to the library.
If your app is version 0.1, and then you released version 0.2, and in version 0.2 you did modified the structure of database, so you have to migrate the old...
In my project, I find that SQLiteManager can't handle double value correctly.
because the db already closed, reopen db, db will lost that last_inserted_row_id? If so, getLastInsertRowID is not useful.
Hello Misato, I noticed that the README file wasn't using markdown. This was causing the objective-c code example to not be formatted. Thanks, Aaron
Lines 185-190 ``` C case SQLITE_FLOAT: { float value = sqlite3_column_int(statement, i); //using sqlite3_column_int() when setting a float... [result setObject:[NSNumber numberWithFloat:value] forKey:columnName]; break; } ``` All my floats were integers...