SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine.

learn more… | top users | synonyms

0
votes
1answer
12 views

Should we bind parameters inside or outside of a SQLite transaction?

I am interested in using transactions for performance. This is the process I'm currently doing: * ~~~BEGIN TRANSACTION~~~ * Instance a command object and set the command text. * Prepare command text ...
0
votes
1answer
18 views

How to programmatically determine whether a column is set to AUTOINCREMENT in SQLite?

Using Python 2.7's sqlite3 library, how do I determine which columns of a table are set to AUTOINCREMENT? I know I can use the SQLite command line utility, but I need to do this within a program. I ...
1
vote
3answers
82 views

Rails 4.0rc1 app not running due to missing sqlite3 gem

First time I've tried installing Rails 4.0. On Windows 8 with Ruby 2.0 x64. Ran: gem install rails --version 4.0.0.rc1 --no-ri --no-rdoc Then I run: rails new test_app cd test_app rails s But ...
0
votes
1answer
18 views

Sqlite3 : return index of a row and find a row via index

I want to do something like this: db.Query("SELECT `username` FROM `accounts` WHERE `index` = '$'", "1") and this: db.Query("SELECT `index` FROM `accounts` WHERE `username` = '$'", "something")
0
votes
2answers
794 views

rails app defaults to sqlite3. I would like to have postgresql as default _ how to change

I am learning rails and when I started and installed everything I went with sqlite3 based on the books that I was reading. However, I was trying to deploy a test app that I wrote on heroku. Heroku ...
0
votes
1answer
44 views
+150

Android sqlite3_limit?

I'd like to use the sqlite3_limit function to set the max number of attached Databases. sqlite3_limit(db, SQLITE_LIMIT_ATTACHED, 62); Question 1 - How (if at all) can I perform this operation in ...
1
vote
1answer
10 views

Create sqlite3 database from .sql file

The goal is to make a database out of a .sql file. I'm trying to set up a local environment to test and modify this red5 implementation Step 1 is Create a database using the SQL command in ...
0
votes
1answer
23 views

What is the best approch to save images and xml file in device (sqliteDB)

I am creating an iPhone application in which i have to store images and xml files locally in device (sqliteDB). So my question is what is the best way to do this? I have two approaches in my mind. ...
-3
votes
1answer
33 views

How to perform filesystem operation in NSFileManager in iphone [closed]

I am a new to ios programming.i am learning sqlite3 tutorial according to my project requirement. I am follow the one of the tutorial. The link is given below. ...
0
votes
1answer
14 views

Phonegap iOS Change Threading Mode of sqlite

In iOS sqlite is defaultly compiled with Multi-thread Mode ( SQLITE_CONFIG_MULTITHREAD ). I want to change the mode to Serialized. In Native project i can done this via sqlite3_shutdown(); if ...
1
vote
2answers
18 views

SQLite select multiple foreign keys to one row

I'm trying to set up a high scores board for a game I'm making. On the board, I'm using foreign keys to two other boards, players and weapons. Each score stores the four weapons the player used on ...
0
votes
1answer
23 views

SQLite Query Stops Incrementing at 10

I have an insert query in an Android SQLite database. I need to keep a key id field that autoincrements for each new record. So as part of the setup to my insert command, I find the max value in this ...
0
votes
3answers
209 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
0answers
21 views

Dropping SQLite index with fmbd on iOS fails with SQLITE_LOCKED

I'm having some trouble dropping an index I've created in SQLite in an iOS application. I'm using fmdb. When attempting to drop an index, sqlite3_step always returns SQLITE_LOCKED. As a result, fmdb ...
0
votes
2answers
19 views

python sqlite3: executescript fails

This is a minimum code: import sqlite3 as sq3 import os import sys def main(argv): q = 'select * from table_name;' db = 'test.db' con = sq3.connect(db) cur = con.cursor() ...
0
votes
1answer
16 views

sqlite select query for last 24hrs

Can we perform sqlite select query for last 24hrs only by time validation,not by using date & time. My pc time is ""2013-05-23 22:30:00",below are my records i have in my sqlite db. S.no ...
0
votes
2answers
20 views

sequel adapter is missing by deploying a database to heroku

I'm trying to deploy my app on heroku. But everytime I try to push my database, I get the following error: heroku db:push Sending schema Schema: 100% ...
2
votes
1answer
870 views

SQLite list ALL foreign keys in a database

Is there a way of listing ALL foreign keys in a SQLite database? They don't seem to be stored in sqlite_master and PRAGMA foreign_key_list('table') only lists one at a time. Alternatively, is there a ...
-1
votes
0answers
13 views

XE3 Metropolis Grid app error with SQLITE components [closed]

In XE3 RAD STUDIO, I added a new project on GridView Metropolis, after dragging in SQLite tables from Data Explorer and doing livebinding, I compiled fine but got the below linking problem: Any help ...
0
votes
0answers
6 views

sqlite3.OperationalError: database or disk is full & Lustre

Since a few days, I have this error in my application log: sqlite3.OperationalError: database or disk is full As many disk space remain and my SQLite db seems not be corrupted (integrity_check did ...
1
vote
2answers
3k views

in iphone how to get Sqlite last insert row id?

I am making an application where i want to use update query? In my application i have two stages to complete the registration process in page1 i have registration form and one submit button? on ...
0
votes
1answer
15 views

ruby on rails: multiple insertion SQLite3::SQLException: near “,”: syntax error:

I need to do a multiple insertion in the database.It shows me an error all the time Single insertion works perfect: CONN = ActiveRecord::Base.connection irb(main):271:0> ...
15
votes
5answers
6k views

HEROKU - cannot run git push heroku master

I run commands heroku create --stack cedar git push heroku master but it gave me an error: Counting objects: 144, done. Delta compression using up to 2 threads. Compressing objects: ...
0
votes
1answer
26 views

Open source SQLite database encryption supported by Entity Framework?

I am developing an application that is using SQLite for the database. I am using Devart dotconnect (http://www.devart.com/dotconnect/sqlite/) for SQLite along with entity framework in .NET 4.5 to ...
-1
votes
1answer
13 views

members and staff login info schema

So I have two tables, members and staff. I need to create a login system which means I need to store usernames and passwords for both members and staff. How should it be implemented? Add columns ...
1
vote
0answers
44 views
+50

effectively unlocking an SQLite database

I have a program which frequently crashes (Zotero), leaving its SQLite database locked and inaccessible for use by the restarted program unless I reboot (which I really want to avoid). So this does ...
3
votes
2answers
3k views

python sqlite3 update not updating

Question: Why is this sqlite3 statement not updating the record? Info: cur.execute('UPDATE workunits SET Completed=1 AND Returns=(?) WHERE PID=(?) AND Args=(?)',(pickle.dumps(Ret),PID,Args)) I'm ...
0
votes
2answers
37 views

Sqlite check for multiple values- Android

I have a requirement where I need to check for multiple values in sqlite where clause. The query goes like this. String sql = "SELECT * FROM _jobcard_table as t1 " + " left join _customer_table ...
-1
votes
1answer
16 views

Heroku support for Sqlite and Postgres [closed]

Why doesn't Heroku support sqlite3? or Why does Heroku only support PostgreSQL? In case I am completely wrong and Heroku does support either MySQL or sqlite3 could you please tell me how? thx :)
2
votes
1answer
63 views

Load Error - Using MySQL with Ruby on Rails

I have been trying to use SQL with Ruby on Rails for quite sometime now and cannot seem to make it work. I've pretty much given up on SQLite, so my focus is now on MySQL. I have fully installed the ...
0
votes
1answer
15 views

sqlite3: query file's UTF-8 encoding is not recognized automatically

I fed in the query for the database as follows: sqlite3 database.db < query and I got the message: Error: near line 1: near "SELECT": syntax error The query was encoded in UTF-8 and so was ...
2
votes
2answers
26 views

SQLite subselect conundrum

Data (illustrative) in SQLite3. Have a few million rows, actually. a, aardvark a, anvil a, apple a, automaton b, apple b, peanut b, persimmon b, walnut Key for my data is actually multiple columns ...
1
vote
2answers
60 views

Speed up an sqlite3 database search

I"m new to databases and just wrote my first code using sqlite3. It does the job, but is running extremely slowly and I'm hoping to get some advice regarding how to speed things up. Right now my ...
0
votes
2answers
15 views

Create View of MYSQL to sqlite3

I have this two views in mysql and I when I execute they in sqlite3 throws me the error Error: near "(" I have cheked it: http://www.sqlite.org/lang_createview.html The Views: CREATE VIEW ...
0
votes
3answers
34 views

PHP JSON array from SQLite3

I'm trying convert data from a SQLite3 db to a JSON array by using PHP. I'm getting close, but I can't seem to get it right. This is the error I'm getting: PHP Warning: PDOStatement::fetchAll() ...
2
votes
1answer
170 views

need SQLite3 for a portable program vb6

Is there any idea to use sqlite version 3 in vb6 like sqlite version 1 ? sqlite version 1 use ags_sqlite.dll http://www.freevbcode.com/imagesvr_ce/184390/source/008/zully_lite_sqlite.zip
3
votes
1answer
1k views

iOS app validation problems: non-public API usage, libsqlite usage

Once I tried to validate my iOS application on the appstore, I got the following error on XCODE: Your app contains non-public API usage. Please review the errors, correct them and resubmit your ...
0
votes
0answers
28 views

Android rawQuery is not updating the sqlite table?

I want to increment the column value by 1 in sqlite table.For this I am using the following query: myDb.rawQuery("UPDATE Service SET ContiniousNumber = ContiniousNumber +1 WHERE _id="+ localId, ...
-2
votes
1answer
44 views

How to write the following sql query for the following? [closed]

I have a table has columns like this docid (documentID) Word (word in the document) count (number of occurrence of word in this document) I need a query which can do the following thing - get ...
2
votes
3answers
4k views

Converting to Byte Array after reading a BLOB from SQL in C#

I need to read a BLOB and store it in a byte[], before going forward with Deserializing; Consider: //Reading the Database with DataAdapterInstance.Fill(DataSet); DataTable dt = ...
0
votes
3answers
38 views

Downloading images from server and saving into Database

I have to download images and save it into my local database. So I am storing the images in NSData and than inserting it into local database. But there are atleast 50 images coming from the server so ...
1
vote
1answer
28 views

Cant execute delete query properly using rawQuery

I want to deleting some rows of table info comparing another table type, my code goes as below. I am not getting any error or exception still I am unable to delete the data. Please suggest me String ...
0
votes
2answers
28 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 ...
0
votes
1answer
41 views

Using Python with sqlite3

I wrote a python program that processes a large amount of text and puts the data into its multi-level dictionary. As a result, dictionary gets really big (2GBs or above), eats up memory, and leads to ...
1
vote
1answer
46 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 ...
-1
votes
0answers
14 views

Can more than one client to connect to a Sqlite at the same time? [duplicate]

My specific question : Can more than one client to connect to a Sqlite at the same time ?
1
vote
2answers
35 views

sqlite3 if exists alternative

I am trying to run simple query for sqlite which is update a record if not exists. I could have used Insert or replace but article_tags table doesn't have any primary key as it is a relational ...
13
votes
4answers
170 views

Connect to a Database in Flask, Which Approach is better?

Method One: Using special g object from http://flask.pocoo.org/docs/tutorial/dbcon/ and http://flask.pocoo.org/docs/patterns/sqlite3/ import sqlite3 from flask import g DATABASE = ...
0
votes
0answers
25 views

Is it possible to use date functions when creating an SQLite view?

Say that I have a table with the following schema: create table events ( _id integer primary key autoincrement, title text not null, date text not null ); And I want to create a view ...
0
votes
0answers
8 views

Detect php SQLite3 “not an error” exceptions

I'm using the SQLite3 libraries for unit testing a DB migration management tool. I seem to have discovered a flakey scenario though. The SQLite3::query() function is throwing an exception in the ...

1 2 3 4 5 101