Tagged Questions

0
votes
0answers
14 views

Date entry into database through GUI for Date which is readable by FMDatabase

I have a set of events which I will have to feed into the database before I ship the app so that the application is ready to read from this database. I have seen some posts like these which explain ...
0
votes
1answer
65 views

Read and Write NSDate to sqlite database through FMDatabase

I have a doubt whether NSDate can be directly stored or read from the database using FMDatabase or not. As per my research, FMDatabase reads date from record expecting that tuple to be a double ...
0
votes
2answers
169 views

FMDB executeUpdate DROP command does halt the app

I want to drop a table in my SQLite Database file named database.db. After using NSLog(@"i show up in the console"); [db executeUpdate:@"DROP TABLE IF EXISTS `article`;"]; NSLog(@"i will not show up ...
0
votes
1answer
100 views

Is FMDatabase having troubles with “NOT IN” or doesn't SQLite on iPhone support it?

I'm facing a serious problem with FMDatabase. I'm using a query like the following SELECT * FROM `article` WHERE `alias` NOT IN ('example_alias') I'm using 'NOT IN' because instead of ...
0
votes
2answers
781 views

UPDATE doesn't run with FMDB, runs fine with sqlite command line

I'm using FMDB to interface with an SQLite database. I have it inserting rows fine, but when I try and UPDATE one of them, the UPDATE does not occur, but no error is reported. Here's what I'm doing: ...
0
votes
1answer
562 views

FMDB and UITableView

We have a database of many many rows in sqlite3. We are utilizing the FMDB Wrapper for SQLite3 to show data in a UITableView. It is preferred that we do not use Pagination as this doent feel very ...
0
votes
2answers
2k 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, ...