Tagged Questions

5
votes
4answers
159 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 ...
4
votes
0answers
62 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 ...
2
votes
0answers
63 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
368 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
0answers
17 views

iphone database using sqlite and fmdb wrapper - slow UI

I've created a database for the iphone using sqlite and the fmdb wrapper. The database has roughly 3500 rows in it. It has 14 columns: 1 for an id, 1 for a name/main search term, 9 other columns for ...
1
vote
2answers
49 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
35 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
1answer
33 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
78 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
3answers
254 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
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
54 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
464 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
728 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
351 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
858 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
436 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
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
997 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
737 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 ...
0
votes
1answer
20 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
44 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
22 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
43 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
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
60 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
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
38 views

FMDB and datetime() function

I'm having a few problems with dates and FMDB. I have a whole bunch of records with datetime values in them which I want to group by date/hour etc. Using a basic sqllite query tool, I have determined ...
0
votes
1answer
97 views

Passing an array to sqlite WHERE IN clause via FMDB?

Is it possible to pass an array to a SELECT … WHERE … IN statement via FMDB? I tried to implode the array like this: NSArray *mergeIds; // An array with NSNumber Objects NSString *mergeIdString = ...
0
votes
1answer
158 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
78 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
63 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
127 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
0answers
47 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
177 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
75 views

Accessing CoreData tables from fmdb

I'm using CoreData in my application for DML statements and everything is fine with it. However I don't want use NSFetchedResultsController for simple queries like getting count of rows, etc. I've ...
0
votes
1answer
125 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
1answer
95 views

FMDB, How to manually release string created from stringForColumn

I'm working with the FMDB, The SQLite Wrapper for iOS. General Problem: I'm reading a long string (Base64 encoded image) from the db and then sending it to a UIWebView to be displayed. The when I ...
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
246 views

SQlite-FMDatabase query while loop not working

I have a table "keywords" that has 2 columns "pk" and "text". In firefox SQLite manager ,I can see that there are two names "john" and "tom" in "text" column. There is no error or warning in my code. ...
0
votes
1answer
596 views

SQLite: DB error, “out of memory”

I am using FMDB to create and add a record to a d/b. The method to create the d/b is: //----------------------- checkIfDatabaseExists -----------------| + (void) openCreateDB { NSArray ...
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
636 views

Error for open connect of database with FMDB

When I'm going to open connect with database, console says: "error opening!: 14". I included "mybase.sqlite" on folder Resources of my project and I'm using the FMDB framework. For open connect I'm ...
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
788 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: ...

1 2