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

learn more… | top users | synonyms (1)

0
votes
1answer
10 views

Can't save data using ActiveRecord.update_attributes

I'm following railstutorial and I stuck on Chapter 7 (near figure 7.8) I can't update attributes using update_attributes method of ActiveRecord class The exact steps I'm taking and error it gives ...
0
votes
1answer
9 views

INSERT query of SQLite shows 0 values

I am makeing a small project in flask/python in which I have got just ONE DATABASE, which has ONE table and ONE column init. BUT my DATABASE is giving an ERROR whenever I am checking my database by ...
0
votes
1answer
27 views

Foreign non-primary UNQIUE key error code 19: constraint failed

I have the following table structure in place: "CREATE TABLE " + TABLE_PLANS + "(" + PLAN_ID + " INTEGER PRIMARY KEY," + PLAN_NAME + " TEXT," + PLAN_LOC + " ...
0
votes
1answer
26 views

Using sqlite out of a Context

I have a class that extends ArrayAdapter (adaptadorTemas, is an adapter for a listView). I have another class that extends SQLiteOpenHelper (sqlStuff). So, I'd like to make a query to the DB from my ...
0
votes
0answers
18 views

SQLite command in an iOS app

I am using SQLite in an iPad app. I have a csv file that I have to write in the database table. Now I am using a for sentence and writing in the database with a select sentence. The problem is that ...
0
votes
0answers
10 views

WPF - SQLite - Datagrid - Datatable syncronization

I am attempting to get an understanding of the best methods to combine a SQLite DB, and a WPF DataGrid bound to a DataTable. I am able to get the grid bound to the table but I am not clear about how I ...
0
votes
0answers
10 views

SQLite3 on freebsd - compilation of first program

I installed sqlite3 from ports on FreeBSD and now does not sure how to correctly use it. So, I have some simple sqlite program from official tutorial. When compiling #include <sqlite3.h> with ...
1
vote
0answers
11 views

Flex Database Select Statement doesnot respond

I am trying to retrieve data in flex database (AIR APPLICATION), below is code. everything is working properly except i am not able to retrieve data. ie.,when select statement is executed result ...
0
votes
1answer
23 views

sqlite3 converting data into short array

I am using sqlite3 on an embedded system with Modbus. I need to pack the information from sqlite3's select statement results into an array of shorts to be able to pass over Modbus. Currently, I am ...
0
votes
0answers
19 views

Jquery each function Index with radio group

I have a series of radio buttons which are created from an sqlite database I am using the jquery each function to loop through the radio groups. For each group, if there is a checked item, I am ...
0
votes
3answers
36 views

How do I get a boolean result from a SELECT query?

I have the following SQLite QUERY in my PHP script: try { //open the database $db = new PDO('sqlite:users.sqlite'); //create the database or view existing $db->exec("CREATE ...
0
votes
0answers
13 views

Sqlite3 Database Interfacing with AM1808 insert failed silently no error

I am using sqlite3 Database for the database management for my AM1808 ARM9 based microprocessor. I am using EMbedded Linux (V10.10 Lucid) and Gcc compiler for ARM. My scenario is as following, I ...
0
votes
0answers
32 views

Android SQLite update method not working properly. Using Content Provider

I am trying to update just one column in a row and for some reason it continues to tell me the column does not exist. Content Provider @Override public int update(Uri uri, ContentValues values, ...
0
votes
1answer
14 views

Exception when retrieving values from SQLite database Android

I'm using SQLite in my Android Application. It consists of a table with 4 columns - first one is the "id" (integer) and the last one is AppName (String). When I try to retrieve the values from the ...
1
vote
1answer
22 views

Android SQLite update query not working?

public void AddViewCount(String chname) { String selectQuery = "UPDATE channel_login SET TimesViewed=TimesViewed+1 WHERE channelName="+chname ; SQLiteDatabase db = this.getWritableDatabase(); ...
0
votes
3answers
32 views

Don't want to create a new database if it doesn't already exists

If I have the following code: conn = sqlite3.connect('abc.db') .. it will create DB fle called abc.db if it doesn't already exist. What do I do if I don't want to create a new file and only want ...
0
votes
1answer
19 views

Convert Database From MSAccess to SQlite for android

I have a database of MSAccess and now i want to convert into SQLite database. Is it possible? If yes and if you have any idea related to it than please Share with me. Thanks.
0
votes
1answer
6 views

SQLite: SQLITE_BUSY on ATTACHed database and parallel read-only connection to the attached database

let me try to explain the problem in general parlance. We are using SQLite 3.7.11 by System.Data.SQLite Wrapper for .NetCF in Version 1.0.80. We have two database files: master_data.db ...
0
votes
2answers
32 views

Get row count from SQLite

I am trying to get a row count from sqlite for my android application but for some reason its always returning Zero even though I have a enough amount of rows in my DB. Here is the Code: ...
2
votes
0answers
25 views

How to configure relative datasource file for SQLite?

I'm trying to configure a SQLite database for an Spring Web App. The thing is that I'm not able to reach the database file that I've created in src/main/resources using a relative path. I've tried ...
0
votes
0answers
14 views

sqllite 3.7.17 compilation error under FreeBSD

There are many users at StackOverflow who advised me to migrate to SQlite. Ok, I am trying, but can not compile sql source under FreeBSD. The following error occurred: sqlite3.c:23527: error: ...
0
votes
1answer
19 views

How are indexes effected when storing a date as text rather than integer in SQLite? [closed]

SQLite states that data can be represented as either Unix timestamps or dates. Text is much more readable but integers takes up less row data and index data. http://www.sqlite.org/datatype3.html ...
1
vote
0answers
22 views

Why fetching data from sqlite block Node.JS?

I want to fetch and export to csv file huge amount (5 - 12 milions rows) of archive data from Sqlite database. While doing this the whole server is blocked. No other connection can be handled by ...
0
votes
2answers
42 views

Fill object from SQL result

I have a regular C# class called "vehicle" with properties like Name, NumberPlate, MaxSpeed, etc. All the data for the class is stored in a SQLite Database where I have a Table "Car" and "Boat". The ...
1
vote
0answers
21 views

Same SQLite database content but different size on disk

I have a SQLite 3 database, which is populated by a Windows application running on a Windows Server. This application caches data coming from one of two functionally identical Servers: - one running ...
0
votes
1answer
30 views

how to find out table name after we combine some record from multiple table?

okay i have source like this public List<SearchRecord> getResult() { List<SearchRecord> searchResult = new ArrayList<SearchRecord>(); String query = "SELECT " + A + ...
0
votes
0answers
16 views

Getting Error While creating sqlite table in phonegap usng jquery mobile

I have created a database. Then I have created the table. Then I am inserting the data in my table, but the problem is: When I check it on browser it populate the success alert. Then it populate ...
0
votes
0answers
20 views

Is it OK to use Android's built-in SQLite storage for concurrent data storage?

I'm writing an Android application, which will consist of background service 1, which reads sensor values in regular intervals (e. g. every five minutes the program reads sensor values for 30 ...
-1
votes
0answers
13 views

SQLiteDiskIOException on delete

Sqlite throws SQLiteDiskIOException on delete, but I can't tell what is wrong in my code. plz give me some advices, thank you very much. Log: android.database.sqlite.SQLiteDiskIOException: error ...
0
votes
1answer
21 views

Uninitialized constant Contact (NameError) when trying to add a record

Model contact.rb: class Contact < ActiveRecord::Base attr_accessible :name, :phone end Test.rb: Contact.create({:name => "Josh", :phone => "123-456789"}) When I run test.rb from ...
0
votes
2answers
53 views

SQLite add entry on table creation

I am actually trying to create an android SQLite DB linked to a login page so that i have one entry i.e. admin and his password(which is prefixed suppose as "password") in the sqlite database during ...
0
votes
1answer
27 views

Select always returns 1 record

I have a table for groups where every each is flaged, in column is_active either with 0 or 1. My problem is to select all groups where flag is 1, and the thing is, if I have 0 records with 1, works ...
0
votes
0answers
30 views

Losing images in application context when deleted from sd card

I need some help since I am a beginner in Android. I have an application in which I'm maintaining a list of items & its description, along with an image of the item. I have used SQLite DB to store ...
0
votes
1answer
17 views

Receiving unknown count of results from SQLite db

Basically this is not a problem in itself, my code works so far. What I have is a App, that lets a user log in and depending on his ID in the db, he gets displayed his saved notes. For this view I ...
0
votes
1answer
29 views

why sqlite exception returned?

i don`t know what should i do about "not supported by PreparedStatment" exception. my code is connection = connectToDB(); print("Connection Success"); String sql = "Create Table ...
1
vote
2answers
34 views

Invalid filepath in database

I have an app which keeps some data in local sqlite database file. On one of my devices, from time to time, trying to read this data leads to "Invalid filepath" dialog. The code I used in ...
1
vote
1answer
39 views

Check if the row already exist in database in android

please help me. I'm trying to make a registration app that will save consumer's data. The user needs to enter his complete name together with the company he wants to register to. He can register many ...
0
votes
6answers
38 views

Error inserting a record in SQLite DB

public class DBCreation extends SQLiteOpenHelper { Context context; public DBCreation(Context context) { super(context, "LBRDatabase", null, 1); } @Override public void onCreate(SQLiteDatabase ...
-1
votes
1answer
17 views

SQLite3.exe shell not successfully creating database?

I am trying to create a sqlite3 database on my windows 7 64 bit machine. I have downloaded sqlite-shell-win32-x86-3071700.zip from http://www.sqlite.org/download.html . After running the sqlite3.exe ...
2
votes
1answer
36 views

Node-sqlite3 seems slow compared to Python's sqlite3 module

I am recently trying to build a small website on Node.js as well as node-sqlite3 due to limited memory resource. I built a similar small-scale website in the past with Python and found that ...
2
votes
2answers
53 views

SQL query over three tables

I have to create a database for my school and now I have these three tables: Note Examination Subject +------+------+------+--------+ ...
0
votes
1answer
17 views

sqlite returned: error code =1, msg = near “port”: syntax error, HELP Please

kindly help, the error is "sqlite returned: error code =1, msg = near "port": syntax error, HELP Please": this code stop my app forcefully, kindly help to correct the error. public static String ...
0
votes
2answers
30 views

Inner join (or intersect) over three tables

I have a database with three tables named: NameAddressPhone, NameAddressAge, and AgeSex. Table NameAddressPhone has columns name, address, and phone. Table NameAddressAge has columns name, address, ...
1
vote
1answer
10 views

Where can the latest stable SQLite provider be found?

I've been trying to locate a "latest stable build" of an SQLite data provider for .NET (4). Back in Nov 2012, I had found a 1.0.82.0 apparently released in 2010 (not sure where I found it anymore). ...
0
votes
1answer
18 views

How to improve a batched query that is limited by the sort

Im using a batched query to make my application more responsive. It was an improvement over fetching everything at once, however, when scrolling though the results, there is a noticeable lag on my ...
1
vote
1answer
16 views

SQLite - multiple random result sets with unions

I want to do two SQL queries and get random results returned from each query and then union them together, a bit like this: select colA, colB, colC from tableA order by random() limit 10 union all ...
0
votes
1answer
21 views

Query for first occurence of null value in SQLite

I have a table which I dynamically fill with some data I want to create some statistics for. I have one value which has some values following a certain pattern, so I created an additional column where ...
0
votes
1answer
26 views

“BEGIN..COMMIT;” fails in SQLite

I'm trying to learn how to use BEGIN ... COMMIT in SQLite. I'm trying this code: BEGIN INSERT INTO fields VALUES ('field1') COMMIT; but it fails with Error: near "INSERT": syntax error When ...
1
vote
2answers
33 views

How to space tables in sqlite?

I am running Linux and have written code to create and open a database in sqlite3. The code then creates a few dummy tables with a few dummy entries. Once that is complete I run sqlite3 test.db < ...
0
votes
1answer
34 views

Does normalizing strings increase SELECT performance in SQLite?

I just read Coding Horror: Maybe Normalizing Isn't Normal, where they particularly say normalization decreases performance of SELECT queries because of the many INNER JOIN statements. However I have ...

1 2 3 4 5 433