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
15 views

How can we reuse a Sqlite file in Android which is already created in IOS

I have a sqlite file with an extension of (db_name.sqlite) and i want to reuse this database in my android project instead of creating new one because, this database has huge data stored in it. How ...
0
votes
2answers
19 views

hibernate two tables per one entity

I have one entity - "User" Its described by User.class. Hibernate create one table per entity, so when i call session.save(user), my data is always save to this table. Now i need another table for ...
0
votes
4answers
26 views

How do I output data via `each` and sort it?

I have a class User: class user class User < ActiveRecord::Base attr_accessible :username, :password end And also have three users in my database: id username password 1 user5 pw5 2 ...
0
votes
1answer
15 views

null exception error in endTransaction Android database

I am facing an issue with transactions on my application. So as a brief, I am building a program to retrieve call records. This works well and fast on the emulator but unfortunately when I try this on ...
1
vote
1answer
34 views

Buttons with answer method on iOS with sqlite?

Hello to everyone i really need some help. I am trying to proceed with my quiz game on iOS but i have a problem. I successfully created the sqlite array and the random question and answers but now i ...
1
vote
1answer
19 views

What is correct syntax if query statment include '?

I'm executing this query statement using SQLite Manager firefox plugin. The query statement is: INSERT INTO "main"."bibles" ("scripture","chapter","verse","content") VALUES("NINGPAWT NINGHPANG"," ...
1
vote
2answers
18 views

Get previous / next record in sqlite

Currently my query looks like this: SELECT name FROM items WHERE something = "foo" AND name > (SELECT name FROM items WHERE name = ?) GROUP BY name ORDER BY name ASC LIMIT 1 (found it here) ...
0
votes
3answers
28 views

Android database doesn't add/read row's

I just want to create simple database, one table with two columns: id, which will be auto incremented and data, so with my target data to store. I created this code, which doesn't return any error but ...
0
votes
1answer
13 views

trigger insert different row

Gentlemen, The sqlite3 trigger that I want to create might or might not be possible with sql. Five tables are involved: Members Groups GroupMembers Accounts ...
0
votes
1answer
18 views

Find records in one table which does not have a matching coulmn data existing in another table

I need to query my database wherein one table's unique field is present in another table and using this i need to fetch only those records in the second table that don't have matching field in table ...
0
votes
0answers
27 views

Contract classes

I am new to android and I started reading the training lessons so I read the term contract classes here and I didn't fully understand what is it used for and how; What I understood is that if you ...
0
votes
2answers
31 views

Multiple LIKE statement using AND in Sqlite.

I want to select recipe_id for recipes that have my both ingredient but I cant use AND like this(I mean it returns null for all columns) : SELECT vsearch.ingredient_id, vsearch.ingredtypes_id, ...
0
votes
0answers
11 views

Populating a GraphView via arrays

I'm trying to figure out exactly how I can populate a GraphView by using data from an SQLite database table. Here is the SQL used to create the table, so you see the structure: // logs table ...
-2
votes
0answers
10 views

How to persist sqlite DB on icenium?

i try to build a db on icenium with Sqlite and the db does not persist why? I think the structure of the DB is not built on a physical level.. someone you ever had this problem? What do you think? ...
0
votes
0answers
16 views

how to access data from sqlite?

i created a sql statement for titanium. Whenever i run the code i always get a "invalid sql statement". here is what my code looks like.. $.maleButton.addEventListener('click',function() { var db = ...
-3
votes
0answers
51 views

Difference between Core DATA and SQLITE [duplicate]

i am quite familier with core data.So please tell me difference between SQLite and CoreData? and their advantages or disadvantages.And which one give better performance.
-1
votes
1answer
16 views

SQLite: Importing csv with large number of columns

I am just starting out with SQL and SQLite. I am aware that one can import a csv as a table by (1) creating a table with the necessary columns, (2) designating the delimiter/separator, and (3) ...
0
votes
0answers
28 views

What type of SQL does Red Query Builder generate?

I have been trying to use Red Query Builder visual query builder on a project, but we are finding that the SQL output is not consistent with the SQL our database (SQLite) expects. That makes me wonder ...
0
votes
1answer
43 views

Is sqlite3.c is compiled with SQLITE_OMIT_AUTOINIT defined in the Windows 3.7.17 distribution?

I switched from using custom Sqlite3 wrapper to System.Sqlite unit from Delphi XE3. So far I am happy with the outcome but I am not 100% sure if I should still call ... initialization ...
2
votes
0answers
35 views

Using collection_select and getting an unexpected error from sqlite3 - anyone know why?

I am relatively new to Ruby on Rails and am having an issue using collection_select and getting my new form to submit successfully. Some background on my code: I have a User model and a Payment ...
0
votes
1answer
28 views

Using SQLite in Windows Phone 8 - relations and queries

I am working on a Windows Phone 8 App (C#) that will use SQLite with the Native wrapper. I have it set up and working, but I haven't found much documentation except how to download it and add basic ...
0
votes
1answer
18 views

Select from several tables with fix count rows in relative table

I have 2 tables: threads and members. Table threads: id | name | ... Table members: id | threadId | name | ... Thread can have 2 or more members. Member can exists in different threads. I want ...
0
votes
0answers
19 views

Writing Sqlite DataSet back to database

I have a Sqlite file that I am trying to load into a DataSet, iterate through by row, and update columns in that row. public static void Database_Online_Check() { //Loads objects ...
0
votes
2answers
38 views

Android Create a TextView for every string in my Sqlite DB

I am trying to display a new toast for every item in my cursor, how would I do this? I've searched SO, but can't find any relevant, useful answers. Here is my code, but it doesn't work: ...
0
votes
3answers
46 views

How to add date in sqlite database

I have sqlite database private static final String DB_PROCESS_CREATE = "create table " + DB_TABLE_PROCESS + "(" + PROCESS_ID + " integer primary key autoincrement, " + ...
0
votes
3answers
23 views

Get all the unique entries from 2 tables

I have 2 tables, i want to get all the entries from 2 tables which are not duplicates e.g. as shown below Table1 MID, ITEM, PRICE, QUANTITY 1000 ab 10 5 2000 bc 20 6 Table2 MID, ...
1
vote
2answers
30 views

Why does an SQLite index not speed up my query

I have 2 tables: tblValidItems - | - tblItems validID itemID ------- ------ 3 1 5 2 6 3 ... 4 ~ 8 K items 5 ..... ...
0
votes
3answers
30 views

Python, SQlite and string substitution

I got a question, maybe it answered somewhere but I can't find answer. So I got Sqlite db with one table consist, let say of phone models and manufacturers: Samsung Apple Iphone Apple Galaxy Samsung ...
0
votes
0answers
24 views

Android - Gridview with Simplecursoradapter

I am working on gridview. I need to make gridview connected to sqlite with simplecursoradapter. But, this code makes error threadid=1; thread exiting with uncatught exception Let me show you my ...
0
votes
1answer
27 views

Creating a database connection in Python using SQLite

I am new at SQLite in Python and I am trying to create a database connection. I have the following as a datbase location: E:\Program Files\Microsoft SQL ...
0
votes
2answers
25 views

How can I combine several 'MAXIMUM' SQLite queries into one query?

tblParents parentId | childId ---------+----- 102 | 1 102 | 3 102 | 4 104 | 3 ... tblPopularity Id | popularityScore ---+----- 1 | 4000 2 | 8000 3 | 3000 4 | 2000 ... ...
0
votes
1answer
26 views

Android content provider, update with SUM

How can I use this query with Android content provider? update tblTot set vMax = vMax + 15 where _id = 1; Where vMax is a column of tblTot table. I have tried to do this Uri totUri = ...
1
vote
1answer
44 views

sqlalchemy bulk update performance problems

I need to increment values in a column periodically with data I receive in a file. The table has > 400000 rows. So far, all my attempts result in very poor performance. I have written an experiment ...
0
votes
2answers
37 views

Android Sqlite how to use one table out of the two created?

I am on Android and this question is of Sqlite : I have a table (USERLOGIN) which holds the user's credentials (username and password) in it. I have another table ($USER$_PROJS) which holds ...
-3
votes
0answers
15 views

My Android Application Is Shutting Down While Retrieving A Non Existing From The Database(SQLite)

I'm new to Android... Actually I have an application related to SQLite. In the Database Table I have 3 columns namely ITEM NAME, COMPANY and LOCATION. I have stored a few values in the database. ...
0
votes
3answers
50 views

How do I connect to an SQLite database with PHP?

I have an SQLite database and am trying to connect to it with PHP. This is what I'm using: <?php $dbconn = sqlite_open('combadd.sqlite'); if ($dbconn) { $result = ...
0
votes
4answers
37 views

Suggestion needed writing a complex query - sqlite

I have 4 columns in a table called musics - 'artist','genre', 'writer' , 'producer'. I need to write a query such that, it returns a value 0 , if there are no repetition of values corresponding to ...
1
vote
1answer
46 views

How to query first letter of each words consecutively in sqlite?

I want to get the result of matched first letter of each words consecutively in sqlite. For example I have data as following: That Lucky Old Sun Today My Life Begins When I type tl, I ...
0
votes
0answers
26 views

how to fix it? I always getting java.lang.NullPointerException

I always getting that error and I honestly don't know how fix it. Can somebody help me? I really don't know where I missed something. Here's my code SignUpActivity ...
0
votes
1answer
28 views

not suitable driver found

I hope someone can help me... I'm workin in a simple application wich connect with a SQLite data base... here's my connection code: try { Connection con = ...
0
votes
1answer
14 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
16 views

Android custom Array adapter and database connection

I couldn't find any solid information regarding this so here it goes; I am using information from SQLite db in my array adapter to show/hide a view. Array list data comes from file system and ...
0
votes
1answer
25 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 AUTOINCREMENT? I know I can use the SQLite command line utility, but how do I do it programmatically. I cursorily ...
2
votes
1answer
28 views

How do I close an SQLite database opened with OOP method?

When opening an SQLite database using procedural code, PHP provides the sqlite_close() function to close it again; but when using the OOP methods, I can't find an equivalent option. Is it simply a ...
2
votes
0answers
17 views

iOS FTS SQLite example

I am trying to build an app that utilizes SQLite FTS. I found a very interesting post on how to do this just the way I want to. However, I am not a very experienced programmer at all and especially ...
0
votes
2answers
36 views

Error in sqllite programming in android

I am designing an app for messaging.i am using a sqlite database to store users information but i am getting this error logcat. 05-19 22:24:00.211: E/SQLiteLog(8815): (1) no such table: ...
0
votes
1answer
45 views

Am I saving data to my sqllite database correctly?

First I have my sql statement private static final String DATABASE_CREATE_BADGES = "create table if not exists badges (id integer primary key autoincrement, " + "name VARCHAR, ...
0
votes
1answer
51 views

using a Cursor to get sqllite data

I am trying to get some data using a cursor but I dont really know if I am doing it right as the row and column of data I am trying to get is returning null. Here is where I am storing the data: ...
0
votes
1answer
37 views

Storing image in sqlite database android [closed]

I have put few images in res/drawable directory of my app. I'm going to put those picture in database because there are so many images and in the app the user will be able to make update to the images ...
0
votes
0answers
17 views

SQLite INSERT and jQuery - LOOPS out of sync

I am trying to loop through an array and insert a DB record for each element in the array, but the code is looping through the array first, then executing all of the INSERT statements using the final ...

1 2 3 4 5 424