4
votes
3answers
220 views

SQLite insert speed slows as number of records increases due to an index

Original question Background It is well-known that SQLite needs to be fine tuned to achieve insert speeds on the order of 50k inserts/s. There are many questions here regarding slow insert speeds ...
0
votes
1answer
101 views

Android SQLite complex INSERT not working as expected

I am currently developing an android app, where I have to import pretty large XML files to SQL. Previously I've had a INSERT for every single Element in the XML. Now I try to create a temporary SQL ...
0
votes
3answers
302 views

Python Sqlite3: INSERT INTO table VALUE(dictionary goes here)

I would like to use a dictionary to insert values into a table, how would I do this? import sqlite3 db = sqlite3.connect('local.db') cur = db.cursor() cur.execute('DROP TABLE IF EXISTS Media') ...
0
votes
1answer
105 views

sqlite3 insert into dynamic table

I am using sqlite3 (maybe sqlite4 in the future) and I need something like dynamic tables. I have many tables with the same format: values_2012_12_27, values_2012_12_28, ... (number of tables is ...
0
votes
2answers
824 views

ios sqlite insert data if not inserted before

in my view controller it shows full of detail. so when user click ADD button it will insert data into sqlite. Question is how to check if data is inserted before. //this code is in viewDidLoad ...
-2
votes
1answer
147 views

PHP/SQL - Won't Insert New User into Table [closed]

My problem is that my script won't insert the new user info into my Database table. I have no clue why, I've been looking at this for nearly 3 hours on end, trying to find the problem, but I can't ...
2
votes
1answer
292 views

SQLite Compare two columns

I am creating a database for my Psych class and I am scoring a personality profile. I need to compare two test items and, if they match a condition, then copy into a separate table. Example ...
0
votes
1answer
121 views

EXC_BAD_ACCESS on insert sqlite3 with FMDatabase,only can query

thanks!!! i use FMDatabase operate sqlite3... follow is parts of codes: NSString *dbFilePath = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0] ...
0
votes
2answers
1k views

SQL - Insert rows from one table to another when a condition is satisfied

What's wrong in this code: INSERT INTO main.table_1 (SELECT * FROM TempDatabase.table_1 WHERE TempDatabase.table_1.ID != "5855CA0F8E23") I made a condition on ID to prevent duplicates ...
0
votes
0answers
135 views

SQLite INSERT or UDATE with a custom condition

I know there is a lot of question already asked and answered on this subject but they don't seem to fit my situation. I have a distant sqlite database — DB server — and a local one — DB local ...
2
votes
2answers
2k views

Store images in to sqlite database

I know this question was asked by many people and there are several discussions and arguments on "Why to use sqlite,use FMDB,core data" etc.. to store or insert images in database.But please do ...
0
votes
4answers
224 views

Can not INSERT data to my sqlite3 database. (Iphone)

I have a problem with writing down some data into my sqlite3 database. The problem is that during the app is working on simulator, after the INSERT i am checking it out by SELECT and i am able to see ...
3
votes
3answers
5k views

How to insert multiple rows into a SQLite 3 table?

In MySQL I'd use INSERT INTO `mytable` (`col1`, `col2`) VALUES (1, 'aaa'), (2, 'bbb'); but this causes an error in SQLite. What is the correct syntax for SQLite?
1
vote
0answers
176 views

Mysterious duplicate entries in SQLite table when using INSERT

Before I used PDO and it worked fine but I had problems with inserting pictures. Now I switched to SQLite3 and the pictures are now stored correctly. But I'm experiencing a strange problem with ...
0
votes
2answers
459 views

Fastest way to insert elements from Ruby hash to SQLite 3

I have a Ruby hash with variables: a two-element array of strings an integer I have tried the two following ways to insert the elements from the hash to a SQLite 3 DB: myRubyHash.each do |k, v| ...
0
votes
2answers
181 views

Store button with image in to sqlite3 database

I have a form(table view) which contains textfields and textview as subviews,I need to save the data filled in those fields.Hence I used sqlite3.Everything works fine,saving retrieving and displaying ...
2
votes
1answer
837 views

check if data exists before insert into sqlite database for iphone

I want to do insert data into sqlite..While inserting i m getting duplications in my code..i saw the questions related to it and i m getting clear about that..anyone just help me with this code to ...
1
vote
2answers
1k views

SQLite default value if null

Let's say I have a table called "table" So Create Table "Table" (a int not null, b int default value 1) If I do a "INSERT INTO "Table" (a) values (1)". I will get back 1 for column a and 1 for ...
0
votes
3answers
635 views

Insert an image (located on desktop) into the sqite3 database from the terminal

I am making an iPhone app where in I want to make an image - quiz based app. The app will ask questions based on the image. Hence I want to insert images in my sqlite3 database from the terminal, ...
0
votes
1answer
282 views

SQLite3 INSERT on iphone / objective-c, values not added

need help from some gurus here, I have a database which I have moved to the documents directory. For one procedure, I check if a table 'PASS' exists, if it does I delete & recreate it (just ...
0
votes
1answer
258 views

How to insert forever repeated events in sqlite3 iphone database?

I have one iphone application in which recurring events happens.the duration are like every day,every 2nd day,every 3rd day..,every week on mon,every week on tues,...,every second week on ...
0
votes
1answer
137 views

android insert row

whit my Activity I display a form like this: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" ...
1
vote
1answer
1k views

MonoTouch SQLite Insert Error - Unable to open the database file

I'm using MonoTouch and have run into some issues with SQLite: After a few hundred, sometimes thousands, of inserts into a Sqlite Database, using the iPad simulator on a Mac, the following error ...
1
vote
1answer
2k views

Qt - QSql Unable to fetch row, no query on attempt to insert

I'm trying to insert data into a table. Here's the code: void AddContacts::saveContact() { QString first_name = ui->lineFirstName->text(); QString last_name = ...
0
votes
2answers
653 views

Getting quoted string using ContentValues for insertOrThrow

How can i get quoted strings in a ContentValues object to be used in a sqlite insert? SQLite seems to be choking on the : of my value //inside a for loop of a NodeList ContentValues map = new ...
0
votes
1answer
491 views

How do I insert some data into an Sqlite 3 database

Through the following code I am retrieving data from a Db, however I need to insert some data into a Sqlite3 database with this code before select statement. Can any one tell me where I need to put ...
1
vote
2answers
125 views

SQLITE Insert returns value with extra line

While parsing the data I insert the data in sqlite. But for some reason when I run the SELECT query it returns me with extra line and a tab space. When I write this query it inserts the data correctly ...
0
votes
1answer
2k views

CREATE TRIGGER x BEFORE INSERT ON y IF q = ''

Following is a sample. I am trying to use BEFORE INSERT ON SET and have been to pages of google to look for help. This is the closest I can get: CREATE TABLE user (alias TEXT, added TEXT); CREATE ...
1
vote
3answers
493 views

separating keys and objects from NSMutable dictionary and use the values in insert command of sqlite

hi folks i am developing an sqlite application in iphone. since i am new to this application, i dont how to use the key and objects from NSMutableDictionary in the command of insert statement of ...
1
vote
2answers
711 views

How do inserts into sqlite views work?

I have a database schema which is identical in files 1.sqlitedb through n.sqlitedb. I use a view to 'merge' all of the databases. My question is: when i insert into the view, into which database does ...
1
vote
2answers
883 views

Insert problem in Xcode

Actually I am not sure there is a problem but, I have some data and I want to insert it to database. Code seems to works well, every statement works, there are no errors shown but I cant see the ...
5
votes
2answers
10k views

Android SQLiteConstraintException: error code 19: constraint failed

I've seen other questions about this exception, but all of them seem to be resolved with the solution that a row with the primary key specified already exists. This doesn't seem to be the case for me. ...
0
votes
2answers
312 views

SQLite INSERT command Syntax Help

Greetings All, I have a SQLite database that I'm trying to add a new column to an existing table. My current structure is: ID_NO, integer GUIDE, integer MATERIAL, text I would like to add a new ...
4
votes
3answers
3k views

Combine inserts into one transaction Python SQLite3

I am trying to input 1000's of rows on SQLite3 with insert however the time it takes to insert is way too long. I've heard speed is greatly increased if the inserts are combined into one transactions. ...
0
votes
0answers
1k views

iPhone SQlite insert statement executes only once

im using the old school way of storing data in my application using sqlite3 calls. I am running this app on the iphone simulator (4.1) The app is a tab bar view controller with the first view a ...
0
votes
1answer
757 views

Nested Queries in SQLite3 Android

I want to execute a query something like : INSERT INTO MyTable VALUES(datetime('now')); Where MyTable has schema: CREATE TABLE MyTable( mydate DATETIME ) When executed in SQLite Manager query ...
2
votes
4answers
546 views

iPhone - Using sql database - insert statement failing

I'm using sqlite database in my iphone app. I've a table which has 3 integer columns. I'm using following code to write to that database table. -(BOOL)insertTestResult { NSArray* paths = ...
0
votes
2answers
966 views

Problem with inserting into android sqlite3 table that has composite primary key

I have a table with a composite primary key and I am having trouble inserting. The code used to create the table is: CREATE TABLE ClassEvent ( EventName varchar(10) NOT NULL, CourseId ...
1
vote
4answers
8k views

sqlite3 insert and read BLOB data in database

I need to read and write BLOB data to a database. Here is my structure table #define CREATE_TABLE_USERS_SQL "CREATE TABLE IF NOT EXISTS %@ ( \ UserID INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, \ ...
1
vote
2answers
110 views

app explosion with conflicting sql primary key

I have a table in a database where the _id column is the primary key. If I try to do an insert into this table using an _id that already exists, my application crashes. How can I do this? Is there ...
2
votes
2answers
2k views

Insert into a table if a condition is met with sqlite3

if I have two tables: files(id, owner) and share(file_id, user), where owner and user would be primary IDs from a theoretical user table, how can I insert an entry into share only if the user doing ...
0
votes
1answer
408 views

sqlite3 no insert is done after --> insert into --> SQLITE_DONE

I'm trying to insert some data in a table using sqlite3 on an iphone... All the error codes I get from the various steps indicate that the operation should have been successful, but in fact, the table ...
1
vote
3answers
993 views

How to insert xml parsed contents into sqlite3 database

I am new to iphone development.I want insert my xml parsed contents into a sqlite3 database and retrieve it and display it in a tableView.I am able to parse and directly display the contents using ...
1
vote
3answers
5k views

How to insert multiple row of data to sqlite database by iphone programming

I am new to iphone development.I want to insert multiple values into my sqlite3 database and display the content in the tableview.I am able to insert single row of data in to my database and retrieve ...
3
votes
4answers
26k views

How to insert data into a SQLite database in iPhone

I am new to iPhone development. I want to insert certain data into my database and retrieve it and display it in a table. I have created Database data.sqlite with table 'user'. The table has two ...