1
vote
2answers
79 views
How to delete a row in a sqlite database table ?
I am using fmdb for managing my database. I could not find any example for deleting a row from a table in fmdb. I tried
NSString *sqlStat=@"DELETE from tableName WHERE id=3";
FMResultSet *rs …
1
vote
1answer
266 views
Is there a tutorial about how to use FMDB, the sqlite3 wrapper class?
The FMDB page just offers the cvs checkout. Maybe someone out there wrote a good tutorial on how to use FMDB with sqlite3 on the iphone?
1
vote
1answer
47 views
Iphone Unit Test : with SQL
Hi,
I'm trying to do some Unit Testing on method that includes SQL call wrapped by FMDB. I get a lot of linker errors when i try to build the project such as these ones :
"_sqlite3_step", …
0
votes
1answer
59 views
SQLite - running on Device
FMDB runs great in the simulator, but I get the following errors when I try to run it on the device.
"_sqlite3_step", referenced from:
-[FMResultSet next] in FMResultSet.o
-[FMDatabase …
0
votes
0answers
93 views
[IPhone] FMDB transaction
Hi !
I use FMDB to wrap SQLite in my app. I haven't found any docs about the use of methods begin, beginUpdates, commit, finalize, etc. I face some problems in my apps which i think are caused by the …
0
votes
4answers
442 views
Has anyone tried any of the SQLite3 wrapper APIs for easier database functionality on the iPhone?
Coming from a non-SQL background, I've been having a hard time absorbing SQLite3 for the past few days. Has anyone had any good results using any of the SQLite3 wrapper APIs out there? Do they work …
0
votes
2answers
426 views
iphone FMDB can’t find table
- init
{
if(![super init]) return nil;
//the database is stored in the application bundle.
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, …
