SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine.
0
votes
1answer
14 views
Reducing a table by picking one of each unique value from a column
My data from table 'test' looks like this:
A 3
C 3
B 4
D 3
D 4
I'm looking to filter it into this:
A 3
B 4
where every unique value of column 2 is listed, along with ...
1
vote
1answer
20 views
Using DISTINCT on the second select variable
I have the following code that works:
select distinct count(b), a from test group by a order by count(b) DESC limit 10;
But I'd like the output to actually display a, count(b) instead (switching ...
0
votes
1answer
30 views
SQLite Filesize is still not change after drop table [duplicate]
I have a SQLite Database 4MB.
I used command drop table name; and I dropped it. I checked in SQlite Manager that no more table name.
However, I checked the filesize, it is still 4MB, the same.
I use ...
2
votes
1answer
45 views
Trouble setting up Rails, sqLite 3 won't install
Here's what happens when I try installing it.
C:\Users\XXXX>gem install sqlite3
Successfully installed sqlite3-1.3.7-x86-mingw32
Parsing documentation for sqlite3-1.3.7-x86-mingw32
unable to ...
-1
votes
1answer
40 views
how to use sqlite3 in Theos application
I a trying to create a Theos application in which i need to use sqlite,But i don't know how should i import sqlite3 library like we do in Xcode app.
Below is what i did till now and getting error ...
0
votes
1answer
20 views
Use a calculation inside the where part
I have a problem formulating a sql query. The code is used in a php script accessing a sqlite database.
What I want to do: I only want to select datasets which are over an individual offset:
select ...
1
vote
2answers
52 views
How to open two SQLite contexts on the same DB in different modes?
I'm trying to use an in-memory SQLite DB and simultaneously need 2 contexts (one read-only, the other read-write). What seems to be happening is that the mode of the first context is used by all ...
0
votes
1answer
11 views
Deleting a contact from a database using SQLite3. Delete Method is skipping the if statement and displaying the else
I am unable to delete the record. The code looks good and I am not getting any errors on the Xcode side but when I run the application and attempt to delete the record, it skips the if and goes ...
-1
votes
1answer
47 views
How to add multiple attribute in Group by in core data
My requirement to get name,eMail,mobileNo,sum(amount) from a table by core data.
If I go for sql then my sql query looks like this:
select name,eMail,mobileNo,sum(amount) amt1 from T1 GROUP BY ...
-1
votes
1answer
24 views
Is it possible to connect a sqlite3 database remotly [closed]
Is it possible to connect a sqlite3 database from one server to another. Just like what we are using mysql_connect function ?. If so how can I connect. please help
0
votes
2answers
27 views
querying an sqlite3 database
So I am querying a database that is called golfDB and it consists of one table called players with 5 fields:
name (player's name)
totalGross (sum of the gross scores from each round)
totalRounds ...
0
votes
2answers
45 views
Using a for loop to select items and put them into a list
So I am querying a database that is called golfDB and it consists of one table called players with 5 fields:
name (player's name)
totalGross (sum of the gross scores from each round)
totalRounds ...
0
votes
0answers
27 views
undefined reference to `php_checkuid' compiling php 5.4 with sqlcipher
I am trying to compile php 5.4 with sqlcipher extension as described in http://sqlcipher.net/sqlcipher-for-php/ and getting this error when I run make after ./configure --with-openssl
...
0
votes
1answer
61 views
How to get output of sqlite command in shell script
I am trying to make rollback if something went wrong during the execution of my sql crud operations or if it can not make commit with shell scripting.
I have test2.sh and test.sh
test.sh:
...
0
votes
1answer
11 views
Restricting floating point values in sqlite3
I am using sqlite3 and I came across a strange issue.
For example, I have the following table.
CREATE TABLE demo (effort integer);
insert into demo values (10.5); - works fine
insert into demo ...
0
votes
0answers
24 views
PHP SQLite3 no data received
I am trying to connect a sqlite3 database in php. Here's my code:
<?php
$db = new SQLite3("/var/www/testdb.sq3");
?>
now when I open it in browser, output is "No data Received" error on ...
1
vote
1answer
62 views
Python SQLite Wrapper apsw-3.7.16.2 failed to install in mac os x (10.7.5)
Failed to install sqlite wrapper. Any help with installation will be really helpful.
Downloaded from
Installed sqlite3.version
'2.6.0'
Please find the error log below-
sudo python setup.py ...
0
votes
1answer
58 views
PDOException: Could not find driver (works in browser, not command line)
This question has been asked several times, but I couldn't find anything that covers my situation: php/pdo/sqlite works from the command line but not from the browser.
My Ubuntu installation:
...
0
votes
0answers
30 views
How to retrieve a value from sqlite3.OperationalError in Python 2.7
I'm trying to emulate an sqlite command line interface in python to just get a feel for various operations. I have exceptions down, but I'm trying to get the exact exception from the ...
2
votes
2answers
73 views
SQLite: double primary key and autoincrement
I am trying to define a two-row primary key such that
the second column is autoincremented for each individual
value of the first row.
For instance we would have:
X Y
A 1
A 2
A 3
A 4
A 5
B 1
B 2
B 3
...
0
votes
1answer
34 views
sqlite 3 column does not exist, even when it's been created
I've created a table inside a database, with a column called 'recipeName'. After committing the newly created table to the database, it comes up with this error:
OperationalError: table recipes ...
0
votes
2answers
49 views
SQLIte3 querying a database
I'm trying to write a program to query a database. The database is golfDB and it consists of one table called players with 5 fields:
name (player's name)
totalGross (sum of the gross scores from ...
0
votes
1answer
42 views
Querying a sqlite3 database
I'm trying to write a program to query a database. The database is golfDB and it consists of one table called players with 5 fields: name (player's name), totalGross (sum of the gross scores from each ...
0
votes
0answers
110 views
System.Data.SQLite and Entity Framework 5 not null enum types failure
I have a problem where System.Data.SQLite fails to add new records containing NOT NULL to a Sqlite3 database. An SQLiteException occurs with error constraint failed. Foo.Type may not be NULL when ...
0
votes
0answers
31 views
C++ Windows application hangs at FlushFileBuffers call
I have a C++ windows application. My application use sqlite database for its operation. Sometimes a single INSERT operation (not in transaction mode) hangs. While analyzing the dump taken after the ...
2
votes
2answers
83 views
SQLite on Android: Different result set at Runtime vs. SQLite Administrator
I am building an Android app with an internal SQLite DB.
Here is the schema:
CREATE TABLE IF NOT EXISTS [tblImageVideoLink] (
[LinkID] INTEGER NOT NULL PRIMARY KEY,
[ImageID] INTEGER UNIQUE NOT ...
2
votes
0answers
107 views
What is the use of SQLite connection string “Data Source = :memory:”? [closed]
Inadvertently while I was finding a way for a quick test of my first SQLite user defined function without having to create a SQLite database, I've found this short SQLite connection string which ...
0
votes
1answer
55 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 ...
1
vote
1answer
101 views
Can I use backgroundWorker after calling hide method in VB.NET
I have a simple question about Background worker. I have never used it so I have no Idea about how it works.
I am using VB.NET express 2010.
All I want to do a database monitoring in a form's ...
1
vote
1answer
36 views
Baffling AttributeError in python with simple sqlite query
I'm baffled and frustrated by an error I'm getting when I call a function in python to execute a query. I have checked to make sure I don't have tabs instead of spaced indents (checking the obscure). ...
0
votes
1answer
37 views
ruby/ssh/sqlite3 shell escaping
I need a line/block of ruby code that does the following:
starts an ssh shell to a particular user/host: dev@localhost
within that ssh shell start a sqlite3 session on a given file: ...
0
votes
0answers
39 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 ...
2
votes
2answers
55 views
SQL group by 3 columns with a special feature
I have a table that contains name, color1, color2, color3 and other columns(SQLite):
CREATE TABLE data (name TEXT, lvlavailable INTEGER, lvlExtra TEXT,
color1 TEXT, color2 TEXT, color3 TEXT);
...
1
vote
2answers
115 views
add column in Table if its not exists in sqlite
I want to add one extra column in my table.
Can anybody tell me how to add column in Table if its not exists in sqlite updating whole sqlite database ?
if COLUMNPROPERTY( ...
3
votes
3answers
64 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
2answers
55 views
Problems with subprocess, encoding and logging with sqlite
I have searched for quite a while for the answer to this question and I think a lot of it has to do with my unfamiliarity with how the subprocess module works. This is for a fuzzing program if anyone ...
-4
votes
0answers
76 views
How do I import / export file (csv, txt etc..) from an SQLite3 database using C / C++ API? [closed]
Having difficulties to find an existing library/function for importing a file into or exporting to a file from an SQLite3 database, I wrote my own functions for this purpose.
It is a (4-clause) BSD ...
0
votes
1answer
38 views
sqlite with full text search doesn't find results when space in query
I'm playing with notmuch-abook which uses sqlite3 to store names and email addresses. The sqlite table uses full text search, being created by:
CREATE VIRTUAL TABLE AddressBook USING fts4(Name, ...
1
vote
1answer
52 views
SQLite step() returning SQLITE_ROW even when table is empty
I am trying to fetch rows from a table in SQLite:
_tempPath = [[NSSearchPathForDirectoriesInDomains
(NSDocumentDirectory, NSUserDomainMask, YES)
...
0
votes
2answers
48 views
Select all values in a column into a string in SQLite?
In SQL Server, I can do this with the help of Cursor (to loop through each row in the result set and build my string). But I don't know how to do the same in SQLite, this task is not like the ...
0
votes
0answers
46 views
Cannot install dm-sqlite-adapter on Mac OSX
I am trying to go thru this Sinatra tutorial but get stuck in the early stage. When I wrote a simple file to create a database it pop out error as
LoadError: cannot load such file -- ...
0
votes
1answer
59 views
How to select one of records on one field SQLite Android randomly
I've SQLite database table like this :
_id || Column1 || Column2 ||
1 || test1 || a,b,c,d,e,f ||
2 || test2 || g,h,i,j,k,l ||
3 || test3 || m,n,o,p,q,r ||
...
0
votes
1answer
52 views
SQLite3 OperationalError: Table XYZ has no column named ABC
I am new to peewee, so please forgive me if this is a stupid question. I have searched on Google and in the peewee cookbook, but found no solution so far.
So, I have the following models to four of ...
0
votes
1answer
46 views
Reading Sqlite files with a “light” dll
I have a small disk cleaner, only about 400 KB in size. In order to clean Firefox, I need access to their places.sqlite.
Which is fine, I used those System.Data.Sqlite.dll and it works good.
...
1
vote
2answers
51 views
Python sqlite3 string formatting
I have a function like this:
def func(self, id):
self.cursor.execute("SELECT * FROM my_table WHERE id=?", (id,))
This works when I pass an integer value in id:
obj.func(id=55)
Now I might ...
0
votes
2answers
56 views
How to insert a particular record only once per day in sqlite
I have a table named as Attendance, Here is the structure given below.
id fname lname roll_no date time
________________________________________________________
1 Qadir ...
1
vote
1answer
21 views
Translating sqlite3 timestamp format on Windows
Sorry if this sounds like a puzzle, but it does have puzzling me for a while. :)
From a sqlite3 db file, one of the record has last_visit_time field of value 13010301178000000 (INTEGER type).
How ...
0
votes
1answer
35 views
Sqlite3 Subquery parameterization
I'm working with Sqlite3 in Python 3.3. I'm trying to run the following query:
c.execute('INSERT OR REPLACE INTO system (id, date,code,number) VALUES
((select id from system where date=:date, ...
1
vote
2answers
114 views
SQLite Backup Strategy
I'm trying to backup my sqlite database from a cronjob that runs in 5 minute intervals. The database is "live", so there are running queries at the time I want to perform the backup.
I want to be ...
0
votes
0answers
22 views
Different sqlite db location on reboot in IOS 6.0 + cordova
I am creating an app in IOS with cordova 2.1.0 framework. In cordova i am creating a table like this:
tx.executeSql('CREATE TABLE IF NOT EXISTS config (id INTEGER PRIMARY KEY AUTOINCREMENT,key ...



