Friends I Used FMDB and it is working very well, but i tryed to select single row but it is gives me an error
this is code
FMResultSet *fResult= [db executeQuery:@"SELECT * FROM contents WHERE id = 1"];
[fResult next];
NSLog(@"%@",[fResult stringForColumn:@"title"]);
Thank you