Tagged Questions

FMDB is a Cocoa sqlite wrapper, with the purpose of simplyfing access to sqlite functions through a JDBC-like API

learn more… | top users | synonyms

5
votes
4answers
155 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
0answers
55 views

Has apple now enabled FTS in the standard/built-in sqlite library?

I want to use FTS in my iOS project. Through some answers to questions here on SO (like this) and other sources (like this), i understood that i will have to roll out my own built of sqlite3 on iOS, ...
3
votes
3answers
60 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
0answers
57 views

Error when detaching SQLite database - database is locked

I have a system that is based on the SQLite database. Each client has a local database, and once in a while the update arrives from the main server, just a small delta .db file. The task is to merge ...
2
votes
2answers
367 views

iOS - FMDB usage and memory

I have been tracking down memory leaks in my iOS app and I keep coming back to the following code using the leaks instrument: NSMutableArray *resultSet = [[NSMutableArray alloc] initWithCapacity:3]; ...
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
2answers
48 views

Saving to database using FMDB crashes on interpreting NSInteger

When the below function is called, I get the EXC_BAD_ACCESS crash. It looks like FMDB is having a problem interpreting the subject_id NSInteger as it makes it through the two NStrings and bombs when ...
1
vote
1answer
31 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
0answers
29 views

FMDB stringForColumn Returning nil

I am looping through a FMDB result set, generated from a SQLite3 database, creating objects to use later. The data content is created by various users, using various text editors and encodings. A ...
1
vote
1answer
32 views

iPhone fdbm SQLite not read data

I have a project that includes FMDB to manage SQLite databases. I imported and linked the FMDB wrappers, but problems is that no results are shown when I query the database : The sqlite database ...
1
vote
1answer
77 views

Multiple Queries not Running in FMDB

I'm using FMDB to create a SQLite database on iPhone. I have a initial.sql that is of the form CREATE TABLE Abc ... ; CREATE TABLE Def ... ; I load this by loading the file into an NSString and ...
1
vote
1answer
91 views

FMDB - Failed to modify DB from Cocoa

I am working on a Cocoa application which talks to a local SQLite database with FMDB. I ran into an issue that I can't do any insert or update operation on DB. Select queries run perfectly fine, so I ...
1
vote
3answers
251 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
136 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
53 views

How to merge two FMResultSet's based on a common column?

I have two separate SQLite db files and am using FMDB to access them (cocoa wrapper for sqlite). I retrieve two results - one from each DB, which is in two FMResultSet. How do I use FMDB to merge ...
1
vote
2answers
461 views

Problem with FMDB and insert value in the “executeQuery:” from a searchString

While building a Search for my app i ran into a problem whilst using the FMDB SQLite Wrapper (https://github.com/ccgus/fmdb). When I search my database with this SQL Command, everything is fine. 13 ...
1
vote
2answers
727 views

iOS SQLite FMDB Transactions.. is this usage correct?

I'm just going to try out using transactions with the FMDB SQLite iOS wrapper. The documentation is a little vague on transactions but from having a quick look at some functions I have come up with ...
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
350 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
1answer
479 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
850 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
1answer
435 views

memory leak (?) after sqlite+fmdb vacuum command

I'm using sqlite in my app via the FMDB wrapper. Memory usage in my app sits at 2.25 MB before a call to VACUUM: [myFmdb executeUpdate: @"VACUUM;" ]; Afterwords its at 5.8 MB, and I can't seem to ...
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
354 views

FMDB query is not taking any effect on the DB

I am using FMDB in my app to do some updates in my DB. Problem is when I update my table with executeUpdate function, it update my table BUT if I copy the same .sqlite file from project to at another ...
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
995 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
736 views

EXC_BAD_ACCESS in SQLite on Mac OS

I'm pulling and pushing data from an sqlite database. I use the FMDatabase cocoa wrapper. I'm pulling and pushing data from multiple threads, but I made sure that more then one transactions never ...
1
vote
1answer
242 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
19 views

FMDB and LIKE clause

I'm having trouble getting the FMDB wrapper for iOS to work with a parameter and a LIKE clause. In fact I'm having trouble getting the LIKE clause to work at all on SQLite with FMDB. I've tried ...
0
votes
1answer
41 views

Why inserting an Integer into SQLite would bomb out?

I get an EXC_BAD_ACCESS on the below insert statement using FMDB executeUpdate. It occurs on the bindObject toColumn in FMDatabase. In the NSlog statement, I get the correct values, but the update ...
0
votes
2answers
29 views

Query using FMDB not returning result

I am trying to get the next highest PK in an SQLite database that was not originally set up with auto increment and already has hundreds of records. So I made the below method which seems like it ...
0
votes
0answers
20 views

FMDatabase iOS INSERT issues

I'm making an application with database. For modal I use FMDatabase classes. Now I have to insert some new data in two tables: -project(id_proj primary key autoince unique, name, baseImage) ...
0
votes
1answer
36 views

NSData UIImageJPEGRepresentation not writing to SQLite fmdb

I am attempting to convert a jpeg to an nsdata object and then store that data in a blob column of an sqlite database using the fmdb wrapper. e.g: UIImage *img = [UIImage imageNamed:@"house.jpeg" ]; ...
0
votes
1answer
24 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
1answer
32 views

how can I read the whole row data from SQLite with FMDB in IOS dev?

I can read all column Data from code like this ... FMResultSet *rs = [db executeQuery:@"SELECT Name, Age, FROM PersonList"]; while ([rs next]) { NSString *name = [rs stringForColumn:@"Name"]; int ...
0
votes
1answer
27 views

Why I can't read my SQlite with FMDB in IOS

I've create a DB file from firefox tool SQlite manager names myTestDB the db has a table names ViewController1,and the table content 5 columns(there value are all TEXT) I want read the value by ...
0
votes
1answer
20 views

how to iterate through all the columns in sqlite using fmdb in objective-c

I need to do a search on all the columns, so instead of specifying each column name in the where clause I would like to create a method that can search through all the columns. -(void) ...
0
votes
0answers
15 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
52 views

SQLITE ERROR IN iphone sdk (fmdb wrapper)

I have a problem in sqlite wrapper method.. i have defined the below functions and its showing error.. im not able to solve it. all im trying to do it swap rows in the database. it works fine in ...
0
votes
1answer
37 views

How to insert text field's data into the database using FMDB method

I have a database with 5 columns.. I should update the database with the values typed in the textfields.. ...
0
votes
1answer
36 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
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
1answer
70 views

IPHONE SQLite DBManager wrapper tutorial

I'm new to database usage and i want a good tutorial to learn about fmdb wrapper for sqlite. Apparently this is an easier way than using the core data. Please Guide
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
0answers
37 views

Done button in UITableview without NavigationContoller

i have following code, i dont want to use UIBarItem in my code or any navigation controller i have back and edit buttons in my contoller.xib when i click edit button, it works it deletes selected ...
0
votes
1answer
65 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
23 views

Fmdb Loop only fetch first entry in database IOS

i have two entries in my database sqlite> select *from courses; 1|ME|273|Statics|MWF|02:20 pm-03:20 pm|James M. Pitarresi|LH 002 2|CS|328|Internet|TR|02:20 pm-03:20 pm|Steflik|eb 23 and i have ...

1 2