FMDB is a free, third-party Objective-C wrapper for SQLite, providing a simple, object-oriented interface for Mac OS X and iOS.
0
votes
1answer
36 views
Ramifications of choosing fmdb over core data
I'm just learning cocoa (desktop) development, and yes I have read over and over than core data is 95-99% of the time all you need.
BUT, at least at a theoritical level, could someone explain to me ...
0
votes
1answer
28 views
iOS sqlite/FMDB update not working
This isn't as easy and specific to ask as I'd like, but I'm really stuck with something.
I followed this tutorial, recreating it very similar for an iPad app:
...
0
votes
1answer
31 views
insert special character on SQLite with FMDB
I have an issue with inserting a value into table by FMDB.
I have SQL string like this:
NSString *sql = [NSString stringWithFormat:@"INSERT INTO table( COMPANY, PAGE_NO ) VALUES ...
1
vote
0answers
20 views
Memory Leak in FMResultSet - FMDB
I am using FMDB in my project and I have profiled my project using Instrument for Memory leaks. I have found out many leaks in this function of FMResultSet class:
- ...
0
votes
1answer
31 views
Is possible to have [FMResultSet previous] and/or [FMResultSet goRecord:1]?
To use sqlite for populate UITableViews, I copy all the data to NSArrays/Dicts so I can travel back/forward on the list. However, this is wastefull and requiere to have the data twice.
I wonder if is ...
0
votes
0answers
38 views
Having trouble exporting SQLite database to CSV (CHCSVParser)
I'm using FMDB to handle my SQLite database and I'm trying to integrate CHCSVParser to export the database as a CSV file. I'm fairly new to iOS dev and this is the first time I'm working with the ...
0
votes
2answers
56 views
how to get grouped query data from the resultset?
I want to get grouped data from a table in sqlite. For example, the table is like below:
Name Group Price
a 1 10
b 1 9
c 1 10
d 2 11
e 2 10
f 3 ...
0
votes
2answers
60 views
FMDB Infinite loop due to sqlite3_step and while (retry)
I have a FMDB executeUpdate which cause an infinite loop :
FMDatabase *db = [FMDatabase databaseWithPath:[CDDBManager getDatabasePath]];
[db closeOpenResultSets];
[db close];
NSLog(@"successfully ...
0
votes
1answer
65 views
how to add escape character to string when init sql string?
I am using FMDB to manage my sqlite database. I implement an insert function and use it to insert some rows. But there is a row which cannot be inserted, when inserted, the error code is 7 and the ...
0
votes
0answers
25 views
iOS. fmdb.. and select join
im used FMDB Library.. like this:
NSString *sqlselect = @"select m.name,c.phone from namefiled m,phonefiled c where m.common = c.common;";
[db open];
FMResultSet *results = [db ...
0
votes
0answers
23 views
db stringForQuery retrieve one column
When using FMResultSet to execute sql, we can use stringForColumn:@"ColumnName" to get the value.
FMResultSet *cardInfoList =[db executeQuery:@"SELECT * FROM holder, cardInfo WHERE holder.userName = ...
0
votes
1answer
66 views
Use FMDB for SQLite library how automatic update tableview like controllerDidChangeContent of Core Data
i'm using core data in my app, but i notice that is a bit slow and i have some crash of problems of inconsistency, maybe i have bad managed it, however i want pass to SQLite and i found the FMDB ...
0
votes
1answer
45 views
SQLite Not Importing Properly into iOS
It appears that when I copy a .sqlite3 file into iOS, and use FMDB to access it, the database is empty. I just drag and drop it into Xcode. When I run:
NSArray *paths = ...
0
votes
1answer
74 views
FMDB not building iOS 6.1
I am installing fmdb SQLite wrapper for iOS. I cloned the git repo, and copied the /src and /extra directories into my project. I added the target dependency and the .a static library to my build ...
0
votes
2answers
72 views
Result does not return any data in FMDB
I am using this tutorial to implement FMDB in my project. But my code does not return any value. here is the code for retrive value.
-(NSMutableArray *) getCustomers
{
NSMutableArray *customers = ...
0
votes
1answer
60 views
How to remove all data from table using FMDB
I want to delete all data from table in my database. I am using FMDB.And i have used this code but it will not delete data from my table.
-(BOOL) deleteAll
{
FMDatabase *db = [FMDatabase ...
0
votes
1answer
46 views
When to close SQLite database (using FMDB)
When should you close the connection to an SQLite database (using [db close] in FMDB)?
Right now I am closing it after running every batch of related queries, but should I rather close when my app ...
0
votes
0answers
83 views
iOS Sqlite FMDB Bind on Column name
Using FMDB as my SQLite database wrapper, is there a way to bind to column names? In the WHERE clause of my SELECT statement I have tried '? =1' but this query always returns 0 rows. However when I do ...
0
votes
1answer
72 views
FMDatabase.h not found when using route-me library
So im trying to use the route-me widget in my app, but xcode keeps complaining that it cant find FMDatabase.h, yet its included in the project (albeit under a different project that is included into ...
0
votes
2answers
48 views
FMDB databaseWithPath: not writing to disk
The fmdb docs say that if you pass a file system path to databaseWithPath: it will create a file for you:
A file system path. The file does not have to exist on disk. If it does not exist, it is ...
0
votes
2answers
81 views
Xcode compare numbers from FMDB
I want to SELECT a record FROM database WHERE the 'balance' is bigger than the number you type.
The regular sql is :
SELECT cardNum FROM cardInfo WHERE balance > money ORDER BY withdrawals DESC, ...
0
votes
0answers
118 views
Trigger.IO Webview error results in blank screen on iPhone
Here are the steps I've taken to replicate the error:
Package application for Ad Hoc distribution using the trigger toolkit
Distribute ipa using either testflight. Console logs indicate successful ...
2
votes
1answer
42 views
print prepared statements with fmdb
Is there any way to print the prepared statements, or at least implement the sqlite3_trace function when using fmdb? trying to access the statement from the FMResultset didn't work.
0
votes
2answers
149 views
Cannot insert in SQLITE database with FMDB wrapper
I'm new to IOS development so I am following this
tutorial
As mentioned in this tutorial I made my database using the SQLITE command line, created my tables and next imported the database in my ...
2
votes
1answer
134 views
FMDB ios no such table
I have a problem with a sqlite project that i'm doing, I'm using FMDB, I follow a simple example, but doesn´t work. And I can't find the error. I did my database schema from the terminal, I put some ...
0
votes
1answer
101 views
Getting the number of affected rows in FMDB updation query
I am updating my table with FMDB. How can i get total number of rows that updated.
(Actually i have an issue. My update query is returning "true", even i have no data in that table.)
Thanks in ...
0
votes
1answer
104 views
Sqlite performance with 10000 of records in iPad
I'm using FMDB wrapper class for my iPad application. I'm having table which contains nearly 10000 records. Each record is having 140 fields. I'm using Modal class to store the retrieved values like,
...
0
votes
0answers
57 views
FMDB take a lot of memory when running
I have a database to store downloading and downloaded files states. When I use FMDB to get a file state (downloaded/downloading) the memory drops down significantly (about 30 - 40 MB) and the console ...
0
votes
1answer
261 views
Objective-c FMDB SQLite insert withParameterDictionary and auto-increment key
I have an iOS app using FMDB library.
There is a 7 field SQLite DB (1 autoincrement, 6 regular text fields).
I am trying to execute
[db executeUpdate:@"INSERT INTO messages VALUES ...
0
votes
1answer
64 views
ios fmdb error not inserting second time
Iam Using FMDb for inserting into sqlite database my code goes like this
in first view controller:
emp.questions = question;
if ([finalArray count]==3) {
...
0
votes
2answers
77 views
insertion to table fails with FMDB
Hi all I am trying to insert some values in my database in AppDelegate in Application didFinishLaunchingWithOptions however each time it fails to insert data. Please help me out.
code
NSArray ...
0
votes
1answer
55 views
How to mock a class which calls an invokation block?
I'm digging myself into TDD and startet using SenTestingKit along with OCMock. I'm using FMDB as a wrapper for my SQLite Database.
I can't get my head around how to mock the DatabaseQueue class, so ...
1
vote
0answers
59 views
iOS: sqlite3 runtime function always returning 0 (where double is expected)
I have implemented the algorithm provided by the brilliant Dave Addey to calculate the distance between two coordinates using the "spherical law of cosines" formula (this is the original link). This ...
0
votes
1answer
114 views
Uknown error finalizing or resetting statement in sqlite
I'm trying to get our current database to use FTS. I recompiled the project with FTS3 and FTS4 support on. I know this part works since I've tried some of the examples off of the sqlite pages and ...
0
votes
1answer
266 views
FMDB & sqlCipher not encrypting
In XCode Iam trying to get fmdm to use sqlCipher to encrypt a database. In my project I already have a compiling version of sqlCipher which I already have proved is working via sqlite3 calls. I have ...
0
votes
2answers
264 views
Download JSON data via NSJSONSerialization
I have a JSON string from PHP's json_encode(). This is how it looks in JSONViewer.stack.hu, and this is how it looks in the browser.
Is it possible to use NSJSONSerialization to download the JSON ...
3
votes
1answer
179 views
Rejected by apple due to the sqllite db in documents folder
I have sqlite db using FMDB wrapper that puts the db in documents folder on launch. User can also upload files through itunes in documents folder.
But appstore rejected the app as following:
When ...
0
votes
2answers
107 views
unknown property attribute 'atomic'
When i use FMDB test demo in xcode4.2, everything is good. But when I run the demo in xcode 3.2.6, it gives the error:"unknown property attribute 'atomic'"
__unsafe_unretained id _delegate;
...
3
votes
3answers
160 views
FMDB: is It good remaininig open database during the whole life cycle of ios app?
I am confused about database open and close operation for FMDB wrapper class.
Is it creating issue if i open database in
applicationDidFinishLoading method of AppDelegate class
and do not close ...
-1
votes
1answer
175 views
Convert Objective C to Rubymotion
SQLCIPHER sqlite encrypted iphone ios converting un-encrypted database to encrypted database
[fmdb open];
NSString *sel = @"SELECT count(*) FROM sqlite_master";
FMResultSet ...
1
vote
1answer
228 views
FMDB: error 14, unable to open database file
Currently I am using the FMDB wrapper for my iPhone app. My problem is that after executing 2000 SQL insert statements (out of 5000 to 8000 sql statements), I get the following error:
"error 14, ...
0
votes
2answers
136 views
fmdb path and using db 2nd time from another viewController
I am using the code below to create db in one class and using it in the viewController and same code again in another class in newViewController .
Is it correct ? Or does it create new db in its place ...
2
votes
1answer
170 views
Using FMDB + SQLCipher with Rubymotion?
I am using FMDB for handling a sqlite db in my application built using rubymotion.
I want to encryt the database with SQLCipher and I am facing issues when I try using SQLCipher methods such as ...
1
vote
1answer
76 views
error fmdb set label.text
I am using the below code to create a table.I get this error [__NSCFNumber isEqualToString:]: unrecognized selector sent to instance at
label.text = rs[colNum++];
How Do I fix it? Thanks in ...
0
votes
1answer
143 views
iPhone SQLite (FMDB) query takes excessive time
I am trying to execute a query that has group by clause in it.
The query executes in 0.012243 seconds
However when I execute [resultset next], it takes more than 5 seconds the first time it is ...
0
votes
1answer
115 views
Convert SQLite/FMDB NSArray format
Question about SQLite and FMDB, I'm going to save NSArray *insertParams into SQLite, the format of insertParams is like below:
(
{
action = ...
1
vote
2answers
232 views
display data from sqlite to label using FMDB
How to display data from SQLite to label using FMDB like this:
I would like to display whatever the output is in this format for the user to see. No Interaction. Only display for the select query.
...
2
votes
1answer
291 views
fmdb - select query with like to avoid sql injection
Hello guys and merry Christmas to all of you!
I am building an iOS app using sqlite and fmdb as wrapper.
I am trying to execute the following sql statement:
SELECT * FROM TABLE WHERE FIELD LIKE ...
2
votes
2answers
116 views
How do i replace the currently open FMDB database retaining the current queue?
I have a question regarding an app which stores its data in SQLite. The data is read using FMDB wrapper, and must be updated transparently to the user if the server side database changes.
To ...
0
votes
1answer
187 views
fmdb ios create and insert query
I am using this query to populate and create my table.But Its not creating the table and not inserting values.Using FMDB for ios.I am a noob in ios database and this is not working.Please guide me how ...




