Tagged Questions

5
votes
4answers
147 views

Core Data VS Sqlite or FMDB…?

Now this might look like a duplicate thread, but my question is that I have read a lot of questions like.. Core Data vs SQLite 3 and others but these are 2-3 years old. I have also read that FMDB was ...
3
votes
3answers
59 views

CoreData or SQLite for iOS aggregation

I have an iPhone app that requires local storage. My initial thought was to use core data, which is fine for a most of the app, however a major chunk is using aggregations on the data. In SQLite ...
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?
2
votes
2answers
2k views

FMDB SQLite question: row count of a query?

does anyone know how to return the count of a query when using FMDB? If I executeQuery @"select count(*) from sometable were..." I get an empty FMResultSet back. How can I get the row count of the ...
2
votes
3answers
6k 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
29 views

FMDB query isn't acting right with LIKE

I am using FMDB, which is a wrapper for SQLite. http://github.com/ccgus/fmdb Here is my query line: FMResultSet *athlete = [db executeQuery:@"SELECT * FROM athletes WHERE athlete_name LIKE ?", ...
1
vote
3answers
244 views

Loading 10k+ rows in iphone SQLite (FMDB)

I am creating a dictionary app and I am trying to load the terms into an iphone dictionary for use. The terms are defined from this table (SQLite): id -> INTEGER autoincrement PK termtext -> ...
1
vote
1answer
129 views

sections and index in UITableView from Sqlite (FMDB)

I am trying to get the sections and index for UITableView from Sqlite (I am using FMDB as the wrapper). I just can't seem to figure out where to start. I can read the information back from the DB ...
1
vote
1answer
135 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
2answers
85 views

How to set labels on UITableViewsCell loaded from nib files?

I have one UITableView, which on didSelectRowAtIndexPath push another UITableView is navigation controller. Now this 2nd UITable view controller contans 4 section and about 1-2 rows in each section. ...
1
vote
2answers
349 views

sqlite3 fails to read database for me, but not for same commit on another machine

BACKGROUND We have an iPhone app that uses sqlite for a large database. We use FTS3, full text search, so we have to "roll our own" sqlite instead of using the library included in the iOS SDK. We ...
1
vote
2answers
848 views

Objective-c : best way to get the ID of the last inserted row on SQLite

On iPhone, what's the best way to get the ID of the last inserted row on an SQLite Database using FMDB ? Is there a better way rather than doing : SELECT MAX(ID) Thanks, Vincent
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, ...
1
vote
1answer
418 views

Problem in inserting data in SQLite?

Hi i am using FMDB to retrieve data from SQLITE database. db = [[FMDatabase alloc] initWithPath:path]; [db open]; FMResultSet *fResult= [db executeQuery:@"SELECT * FROM Users"]; aUsers = ...
1
vote
1answer
990 views

EXC_BAD_ACCESS when using SQLite (FMDB) and threads on iOS 4.0

I am using FMDB to deal with my database which works fine. The app uses a background thread which is doing some work and needs to access the database. At the same time the main thread needs to run ...
1
vote
1answer
241 views

Iphone Unit Test : with SQL

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", referenced ...
0
votes
1answer
34 views

FMDatabase and NSOperation

I am using FMDatabase for sqlite based iphone application. The problem is that application is fetching bulk data from a web service and inserting into a local sqlite database which is blocking UI ...
0
votes
0answers
35 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
63 views

I can't trap FMDB empty resultset

I am having trouble trapping an empty result set from FMDB. The code is below. I am getting NSLog's from the database opening and closing and NSLog "1" but none of the ones in the If statement! If I ...
0
votes
1answer
140 views

How can I backup/sync a sqlite db that I have in the documents directory? Is iCloud the answer?

I have a simple reader app on the app store that I am trying to add some functionality to. Right now the users of the app have the ability to store different bookmarks, take notes, and highlight ...
0
votes
2answers
75 views

iOS NSFileManager copying but file doesn't respond until the next load

I am having our app move it's readonly db to the App Support directory so that content updates can update it as well(over the wire updates, not app updates). The code below is in the app delegate to ...
0
votes
2answers
62 views

my SQL query runs slow need to optimise

I'm having issues with the below query for my iPhone app. When the app runs the query it takes quite a while to process the result, maybe around a second or so... I was wondering if the query can be ...
0
votes
0answers
123 views

moveToRow() and rowCount() in FMDB?

My app has 3,000 exam questions in .sqlite file. And these questions are dynamically selected and sorted by user's demand (for example, 'sort by count of wrong answer', 'select non-accessed questions ...
0
votes
1answer
295 views

My iOS app runs REALLY slow on iOS 5, what could it be?

Ok, I have a simple reader app that I've had on the store for a while, and it works great. I have a sqlite db of content and I use fmdb to talk to it. I load up my text and display it in a UIWebView. ...
0
votes
0answers
79 views

Run FMDB processes on the same background thread?

I am having problems using fmdb to read and write data into the same database. There are instances in my app where 1 class would write data into the database on the background thread while another ...
0
votes
0answers
46 views

SQLite: How to set ID PK to start from zero instead of starting from 1?

Is it possible to set default starting value to zero instead of 1? Currently I'm using FMDB but wondering is it possible at all ...
0
votes
2answers
83 views

display splash screen (UIViewController) while database (FMDB) is loading iPhone

I have a bit of issue with my application. I have WebServices that receive information than parse it and store the information in a database. What I want is my splash screen (or UIViewController) ...
0
votes
1answer
223 views

FMDB not inserting into DB

I am trying to use FMDB to insert a few queries into the DB. When I check the query for insert it is saying that it is inserting. Later I can actually read the data from the Tables. But what ...
0
votes
1answer
123 views

FMDB/Sqlite query problem

I have a database with a table called shuffledQuestions with 2 columns category_id and question_id both are primary keys. It's where I keep a stored list of shuffled questions. My current problem is ...
0
votes
2answers
229 views

FMDB queries with NSDate execute but do not take effect

Any query I execute through FMDB that include NSDates execute but do not return result sets or make edits to the database. I am working in the ios 4.3 simulator.Other Queries that do not stipulate a ...
0
votes
0answers
76 views

Query doens't work in FMDB works with SQLiteManager

I've a fairly simple query not returning any results in the resultset when used with FMDB whereas if I run the same query in SQLiteManager it returns the results fine. What could be wrong? There are ...
0
votes
2answers
178 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
113 views

fmdb iphone 3g large array

I am having some trouble over fmdb with iphone 3g with firmware:4.2.1 (8C148). I have a large NSMutableArray that contains sql commands (downloaded from a database). I populate the NSMutableArray via ...
0
votes
1answer
272 views

ResultSet Column Count in FMDB

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

Bump + OpenStreetMap Error

I have problem with use OpenStreetMap lib and Bump lib. I obtained critical error - ld: duplicate symbol _OBJC_IVAR_$_FMDatabase.databasePath in /Users/ ...
0
votes
1answer
663 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
190 views

Question about FMDB and JOIN clause

I'm using FMDB as the sqlite wrapper, which is pretty easy to get onto. I encountered the problem when I try to join two (in fact one) table. To distinguish the joined two table's columns, I have to ...
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
1k views

FMDB SQLite wrapper and user defined/custom functions

I'm using FMDB for an iPhone app at the moment and I'm finding it... okay. It's a great little SQLite wrapper indeed. FMDB GitHub: https://github.com/ccgus/fmdb The only problem is I'm needing to ...
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
685 views

deleting row in SQLite 3

In UITableView, I want to delete a row and remove that row on database, but my query of sqlite don't works. - (void)tableView:(UITableView *)tableView ...
0
votes
1answer
558 views

iPhone + sqlite3 + fmdb, What code do i need to put data into a UiTableView datasource?

If I was adding data from an array to the UITableView datasource array I'd use this, in viewDidLoad. NSMutableArray *array = [[NSArray alloc] initWithObjects:@"Head First Design Patterns", @"Head ...
0
votes
2answers
1k views

Writing to sqlite db using fmdb?

Ok so I understand that fmdb is totally outdated, and core data is where it's at, but for now, I just need to tweak an app I'm working on that uses fmdb to read from a sqlite db in the resources ...
0
votes
1answer
347 views

How do I import a class into an iPhone project?

I'm sure this is very easy but I'm trying to get the fmdb sqlite wrapper to work in an iPhone project. I've grabbed the files via SVN, and there are 'h' and 'm' files inside an 'src' folder. I'd ...
0
votes
1answer
281 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
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 ...
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, ...