Tagged Questions

3
votes
5answers
7k 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
12 views

FMDB query with char

I'm currently trying to execute a query on a database of words. The database is organized such that I can access by first letter of the word, and by length of the word. However, I'm having trouble ...
1
vote
1answer
137 views

SQLite Changes Not Saved

I'm using SQLite in iOS 4 on an iPhone, but the changes made by my update statements aren't saved. At first thought perhaps quitting the app might be deleting the database somehow, but they're not ...
1
vote
1answer
480 views

How do I make FMDB's database a singleton

I have been using SQLite for awhile now, and have decided to go to FMDB. I need to make it a singleton. Here's my code below; what do I have to change to have FMDB access the singleton d/b? #pragma ...
1
vote
2answers
1k views

Need Help About FMDatabase

I am new to iphone developer & developing iphone application using SQLite. I decided to use fmdb. But I am not getting any example which uses fmdb. I want to perform following operation:-Insert, ...
0
votes
1answer
29 views

ios fmdb load db from file

I use sqlite and fmdb wrapper. My code for load db is this: NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSString *docsPath = [paths ...
0
votes
0answers
16 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
66 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
0answers
36 views

How do I manage multiple objects accessing an sqlite database in an iPhone app?

My iphone app has a single sqlite database that is accessed by many different model objects (FYI, I'm using FMDB). I'm using several helper methods to query the database and create objects from the ...
0
votes
1answer
593 views

“Apple Match-O (id) linker” error when adding external libraries to project.

I added FMDB to my project then added the frameworks libsqlite3.dylib and libsqlite3.0.dylib, but I still get the build error. If I remove the FMDB classes from my project then it builds just fine. ...
0
votes
1answer
238 views

FMDB Result set ruturning nil

So here is the deal, I am using FMDB SQLite Wrapper for my DB app. I know Cord Data is there but My database is really really huge and all I want to do is read it. No new records are going to be ...
0
votes
2answers
180 views

How to take copy of FMResultset in FMDB Sqlite

I tried to return the reference of FMResult object from a method and trying to access values from the returned object and couldn't able to access. So can anyone suggest how to return the FMResult ...
0
votes
1answer
278 views

ResultSet Column Count in FMDB

is there any way we can get the column count from an FMResultSet row?
0
votes
1answer
669 views

FMDB Result set contains null iphone

I am using FMDB for my application to store data in sqlite. Here is my code from AppDelegate - (void)applicationDidFinishLaunching:(UIApplication *)application { FMDatabase* db = [FMDatabase ...
0
votes
1answer
134 views

Help about SQLite iphone

I am developing iphone aplication is which i have 5 sqlite tables. First we set the database path & database name. In my case how can i do that? I know how to do this for 1 db table. how can i do ...
0
votes
1answer
189 views

sqlite3, fmdb, build is failed

I'm using sqlite3, fmdb glad to know that, but try to use, build upon get errors. I do not know why. Gcc4.2 compilation options are used. (or LLVM GCC4.2). I need a good solution.
0
votes
4answers
1k 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 ...