Tagged Questions
0
votes
2answers
26 views
how to get NULL from sqlite in xcode
I want one application that has sqlite DB.
in my sqlite DB exist 5 records that any record has 2 column. (Name,ID,key)
one of all ID is NULL and I want get this. (ID is INTEGER variable)
this is my ...
1
vote
1answer
40 views
how to use loop in sqlite for get Name from certain column
I to use sqlite database in my application. in my sqlite exist 10 records. I want read 4 data from this database and I want get this data until BroID in last data to be NULL (BroID is one of columns ...
0
votes
0answers
22 views
Objective c: multiple connection to SQLite3 database
The link here says "Multi-thread" threading mode is safe for as long as not more than one thread makes use of a connection. My question then is, if I have 3 background threads, all writing to the same ...
-1
votes
1answer
45 views
Sqlite Like Function in objective C
SELECT count(*) from BOOKS where BOOKS.TAG_ID like '%,1,%'
I wanna Execute this query in Objective-C.
const char *sql = "Select count(*) from Documents WHERE DocumentTag LIKE '%i,?,%i'";
...
1
vote
1answer
48 views
Saving and retrieving PDF to and from SQLite in iOS
I have saved and retrieved IMAGE in sqlite, i want to do the same for PDF(which i have as local file)...
- (void)saveImage
{
sqlite3_stmt *compiledStmt;
sqlite3 *db;
if(sqlite3_open([dbPath ...
0
votes
1answer
54 views
exc_bad_access code=2 address=0x1000003c for sqlite compiledStatement
I am getting exc_bad_access code=2. Some time its works without error but sometimes it gives error. I dont know why this is happening. If anyone find any issue pls let me know
Here is my code..
if ...
0
votes
0answers
38 views
SQLITE database locked during transaction
I have been trying to figure this out for days now but I cannot figure out what is going on. In my app I want to be able to delete an item, and related items from a tableView. So when the delete ...
3
votes
3answers
63 views
How to create multiple instance of sqlite database?
I am making an online app in which when I sync my data web then 25 to 30 local database queries in different tables are executed. So it will take around 25 to 30 sec because all database queries are ...
1
vote
1answer
38 views
Retrieve maximum value for the last 10 records in objective c
I want to retrieve the maximum value of last 10 records in sqlite database, I use the below query but it retrieve the maximum value for all the column not for only the last 10, how I can solve this ...
0
votes
1answer
47 views
sqlite db creation + objective-c + cordova
I am creating an app in IOS with cordova 2.1.0 framework. I am doing following to create the db:
NSFileManager *fileManager = [NSFileManager defaultManager];
//NSError *error;
if (![fileManager ...
0
votes
2answers
29 views
Error while creating db in objective-c
I am creating an app in IOS with cordova 2.1.0 framework. I am creating sqlite3 db in objective-c with following code:
NSString *docDir = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, ...
0
votes
0answers
24 views
how do I process a sqlite3 table in multiple sections in ios?
I have a sqlite3 database with a single table with a number of rows. I need to check every row for my processing. Currently I'm going through the entire table and it's pretty slow on the iPhone.
I'm ...
0
votes
0answers
17 views
cordova db location path
I am creating an app in IOS with cordova framework. I am creating the db in location in Documents directory ie. /var/mobile/Applications/CFBA286A-2833-4B79-A19E-32BBB6E57DB1/Documents. Now i want ...
2
votes
0answers
78 views
SQLite3 library routine called out of sequence
the following code give me an library routine called out of sequence error, but I can't explain me where is the problem. Any ideas ?
- (BOOL)insertProduct:(Product *)product inOrder:(Order ...
0
votes
0answers
57 views
sqlite3_column_text returning Null
I have a table and I want to print the content of a row here is the table structure:
CREATE TABLE "quotes_type" ("type_id" INTEGER PRIMARY KEY NOT NULL , "content" TEXT)
I can see the type_id with ...
1
vote
2answers
70 views
how to open .sqlite file when it was created with firefox plugin
I created my table and inserted my data with firefox sqlite manager extension,saved and added my sqlitefile which is "notifications.sqlite" after that I wrote this code but it will output me nothing.
...
0
votes
1answer
44 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
23 views
sqlite3 Select with an NSMutableArray
I want to make a select in iOS XCode with SQLite3 like this:
//arraycat is the array from which the data comes...multiple selections of a tableview
pros = [arraycat componentsJoinedByString:@","];
...
1
vote
2answers
44 views
Strange behaviour when saving to SQLITE3 via UITableView
Im having problems understanding why my sqlite3 insert command is only saving certain index.rows
Currently when the user selects a particular row on the table the following command begins
...
0
votes
4answers
136 views
I am not able to read my pre-existing sqlite database
I have Copied a pre-populated sqlite database from the bundle to the library path. Now when i try to execute the query it does not read the database.
Code for copying the database:
...
0
votes
2answers
72 views
Retrive Table names from sqlite database in objective-c
How can I retrieve sqlite3 table names in objective-c.For example if I created several tables, now i want to get (display) their names like .table in terminal.Thanks.
0
votes
2answers
65 views
IOS - Tell if sqlite table view is empty
I have a working RSS feed reader using SQLite 3 for the iPhone that I have submitted to apple for review. What I am wandering, is there a way to tell if a sqlite table view is empty. I have read about ...
0
votes
0answers
112 views
Application crashes while importing the addressbook to the sqlite database in iphone 5
I am new to the iphone development .Currently i am working on an application which import the contacts from iphone contacts to the application and storing this to the sqlite database . Bu the ...
0
votes
2answers
242 views
Why do I get a SQLITE_MISUSE : Out of Memory error?
I am writing an iOS application that directly accesses SQLite. I have done this sort of thing many times on Android, so I'm struggling to see where my error lies - however my inserts are returning the ...
0
votes
1answer
127 views
How to get Unicode of smiley
I'm working on a iPhone chat app and I'm having problem when I'm saving the smilies which wrapped with the text into Sqlite3 database and retrive them back.
Or I'm wondering is there anyway to get ...
1
vote
1answer
64 views
How to save smilies and text together into sqlite database
I was trying to save the smilies with text into sqlite database(TEXT TYPE FIELD) and retrive them back once done.
But I'm facing problem to retrive them back. Its showing some special char in between
...
-1
votes
1answer
88 views
sqlite3_open databasePath
i'm new here asking questions, but i've been searching here for several issues. Thanks for your help.
Now I'm developing an app using sqlite, and when I uses this code line in AddViewController.m:
...
0
votes
1answer
100 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
44 views
UI in in IOS simulator doe not show
I have a question I am trying to create a database from a tutorial that I have posted on here. The problem that I keep having is that when I build the project the project is built successfully. ...
0
votes
1answer
21 views
NSRangeExeception
My log says that my app is Terminating app due to uncaught exception 'NSRangeException', reason: '* -[__NSArrayM objectAtIndex:]: index 0 beyond bounds for empty array'
if (sqlite3_prepare(db, sql, ...
-1
votes
1answer
30 views
Sqlite3 syntax format may not be correct
I have this sqlite3 query and for some reason it may not be structured correctly. I have inserted this into an application that I am working on in IOS6 with objective c:
const char *sql = "SELECT id, ...
0
votes
1answer
72 views
IOS simulator is is not displaying correct UI
I am currently working with a group of people where we are creating a database with a sqlite3 plug-in from firefox. With are using objective C in the Xcode 4.2 environment. We are using an IOS ...
0
votes
2answers
63 views
Prevent insertion if the records already exist in iphone sqlite
I want to insert a record into an sqlite table in iphone if it's not already present.
I am using three fields named as
id(integer primary key Auto increment)
name(text)
address(text)
If a name ...
0
votes
1answer
51 views
How do I grab the error code if sqlite3_prepare_v2() returns one?
Largely following Ray Wenderlich's SQLite tutorial, I'm writing a fairly straightforward app that displays information pulled down from a server. The basic structure of my SQLite queries (to the local ...
0
votes
1answer
91 views
How to retrieve values from entire column to NSArray or NSMutableArray in Objective-C?
I am new to Objective-C. I have created a single view application that stores and retrieves values from sqlite database. However I am able understand how to store entire column data from sqlite ...
1
vote
2answers
274 views
How to store data from URL in sqlite database iphone
I have hosted web service(.Net) on IIS to get the data from SQL Server DB;parse it and store it in my SQlite DB in iPhone.How can i do this?
My web service is working fine and I'm getting data in XML ...
1
vote
1answer
102 views
Objective-c read image from sqlite
NSData *imageData = UIImageJPEGRepresentation(PhotoImage, 100);
NSString* queryString = ;
[SQLiteAccess insertWithSQL:
[NSString stringWithFormat:@"insert into images (photo) values ...
0
votes
1answer
58 views
INSERT statement sqlite3 objective-c
Hopefully my question has a simple solution. I am just starting to use sqlite3 and I have created a database called local and a table called table with 1 column called name with type text.
It ...
0
votes
0answers
170 views
Use of sqlite3_create_collation on iPhone
I would like to create a collation in order to make case insensitive and no accents searches in a database.
here is my code :
static int sqlite3NoCaseNoAccentCollate(void * foo, int ll, const void ...
-1
votes
2answers
117 views
SQLITE : why I can't write on device (iphone) but I can write on simulator? [duplicate]
Possible Duplicate:
How should I specify the path for an sqlite db in an iPhone project?
I wonder why I only can read my Sqlite database on iphone but can't write anything...
everything ...
1
vote
1answer
298 views
sqlite prepare statement error - no such table
I'm having some difficulty with my sqlite prepare statement. I get an error saying my table does not exist, although I've checked in multiple places for it, and it does exist, so I'm confuzzled.
...
-4
votes
2answers
64 views
Can i create a class progrmatically in objective C(iOS) [closed]
my requirement was to create a class with some properties at run time.
I'm having some tables*(these tables will be created programmatically,according to my data in webserver)* in my database and i ...
0
votes
0answers
74 views
Saving NSString different
const char *sql = "SELECT Nome, Nome2, Nome3 FROM libretto";
sqlite3_stmt *select_statement;
if(sqlite3_prepare_v2(database, sql, -1, &select_statement, NULL) == SQLITE_OK) {
...
0
votes
1answer
39 views
analyzer and autorelease issues with custom objects
I have a class that manages the database queries for my project and I'm having some issues with memory management and the [return autorelease]part of the code. I don't know how to return an object to ...
-2
votes
1answer
110 views
Insert image into xml file
I've look everywhere and couldn't find any tutorial, just want to know, if you have any idea on how to accomplish this task..?
Thanks,
Link
0
votes
2answers
109 views
Error trying to open DB in SQLite (iOS)
Am making an iOS apps with an embedded SQLite database. So I make my DB in a SQLite administrator and drag it to my Xcode project, like in the tutorial says.
When I try open my DataBase, I get this ...
0
votes
0answers
53 views
Error in Fetching records from sqlite data base in ios
I am new to ios development and I am trying to fetch records from sqlite database.
I am able to connect to database but when I am trying to fetch records using 'sqlite_prepare_V2()' command its giving ...
-1
votes
1answer
124 views
NSDate from NSString read from sqlite database
I have the need of getting NSDate format from a NSString *stringDate and I would do that by using the following code:
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
...
0
votes
2answers
192 views
Save image path to sqlite3 database
I am having some troubles saving images path into Documents folder and store the path into my sqlite3 local db.
Today I successfully stored the images as BLOB into the db, but reading around the ...
0
votes
0answers
56 views
sqlite 3.7.7 no .load function
I did't find .load function for load extensions in sqlite version 3.7.7. But documentation says they begin support this functions since 3.6.6
I need to load ICU extension to sqlite. How can I do ...




