SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine.
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
120 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 ...
0
votes
1answer
36 views
Error: no such collation sequence: NOCASE_UTF8
I m using an existing db file in sqlite3. One of the column in a particular table is having clause COLLATE NOCASE_UTF8. I m not able to insert any text in that field. its giving following error:
...
0
votes
1answer
32 views
Default value ignored in non-nullable column
I'm trying to create a new boolean, non-nullable column (with default=True) in a table with the following SQL alchemy script:
from sqlalchemy import MetaData, Table, Boolean, Column
def ...
1
vote
1answer
87 views
SQLite header and source version mismatch
Just installed SQlite3 with homebrew, but when I go to run it I get the following:
SQLite header and source version mismatch
2011-06-25 16:35:41 8f8b373eed7052e6e93c1805fc1effcf1db09366
2012-01-16 ...
1
vote
1answer
31 views
SQLITE ON UPDATE Actions
Based on the SQLite foreign key documentation, it should be the way of creating two database, and the field that referencing the parent field will get updated too if the parent field get updated.
...
1
vote
2answers
54 views
SQLite NOT NULL constraint not working with INSERT OR IGNORE
I am with Python 2.7 and SQLite3.
Here is the code:
#!/usr/bin/env python
import sqlite3
conn = sqlite3.connect('example.db')
c = conn.cursor()
c.execute('''CREATE TABLE stocks
...
0
votes
2answers
29 views
Using Chromium Cookies in a perl script
I'm trying to write a perl script to connect to a website and am having issues with storing the cookies that I'm grabbing out of the Chromium SQLite database. Here's the relevant code snippet:
use ...
0
votes
0answers
26 views
Concurrent Database Access with uWSGI
I am trying to find the best solution for concurrent database access with uWSGI.
Some specifics:
I am using python3 (3.3) and sqlite3. I'd like to be able to scale my app up with more processes (and ...
0
votes
1answer
39 views
Sys.path.append(“”) Dosen't work on Debian.. :/ “no module named guess_language”
Just transferred my python project by ftp to my linux server
and the project can't import files some what.. :/
sys.path.append("Functions\guess_language")
import check_language
...
1
vote
1answer
38 views
Retrieve maximum value for the last 10 records in objective c
I want to retrieve the maximum value of last 10 records in sqlite database, I use the below query but it retrieve the maximum value for all the column not for only the last 10, how I can solve this ...
0
votes
1answer
32 views
Soci C++ sqlite3 backend abstract on build
I'm facing an issue building an application with SOCI C++ 3.2 with mysql and sqlite3 backends. Here are the headers I included:
#include <soci.h>
#include <soci-backend.h>
#include ...
0
votes
0answers
24 views
comparing image from ui to sqlite database image
I want to make an application in ios which has image in imageview and a database with thousand of images which will be used for comparing the image that is currently in image view
for. eg: suppose i ...
0
votes
1answer
29 views
ASCII text not symmetric in UITextView as which is save in SQLite
I have saved ASCII characters in SQLIte database and when I print in the console,
It is symmetric like this:
But when I am trying to print on the UITextView
I get this result :
The UITextView's ...
1
vote
1answer
55 views
Relationship between SQLite and Python 2.X
I am a little puzzled about the relationship between sqlite3 and python 2.x
Here is the output:
$ python
Python 2.7.2+ (default, Jul 20 2012, 22:12:53)
[GCC 4.6.1] on linux2
Type "help", ...
1
vote
1answer
53 views
Update multiple columns on a row with a single select in sqlite
In SQLite I need to update row counts of a related table.
The query below does what I want but it walks the table multiple times to get the counts:
UPDATE overallCounts SET
total = (count(*) FROM ...
0
votes
0answers
37 views
Python/Django SQLite3: save() not working with multiple forms simultaneously
Below is code I'm using as a response form to receive inputs from a webpage using Python/Django web framework and an sqlite3 database. The code successfully saves each input into the ReviewerResponse ...
1
vote
1answer
52 views
SQLite for Windows Runtime is returning an “ReadOnly” error SQLiteException object
SQLite for Windows Runtime is returning an "ReadOnly" error SQLiteException object while inserting a new record in my SQLite database.
I am not sure what's causing it but this "ReadOnly" error is ...
0
votes
0answers
42 views
updation of SQLite database not working
I'm trying to update Userdetail table in SQLite database using XCode 4.3.2. The code I'm using is as follows:
-(IBAction)saveUserProfile
{
sqlite3_stmt *statement;
const char *dbpath = ...
0
votes
1answer
93 views
Metro Apps - SQLite vs Indexed Db
I am about to start working on a metro app using JavaScript/HTML which will store data locally, when no internet connection is there and also planning to port the same on other platform's later.
What ...
2
votes
2answers
60 views
Insert multiple rows in SQLite
I am trying to insert multiple rows in a SQLite (latest version) table but throws an error
got the idea from HERE and here is my sql query :
INSERT INTO "Track"
SELECT "Leonard Collections" AS ...
2
votes
2answers
48 views
sqlite in c++ - parallel inserts from different applications, what will happen?
I'm opening the sqlite database file with sqlite3_open and inserting data with a sqlite3_exec.
The file is a global log file and many users are writting to it.
Now I wonder, what happens if two ...
1
vote
1answer
96 views
Why does building in Xcode overwrite my SQLite database?
First of all, I'm not using Core Data, I'm using SQLite only.
I save the data in the table and then query them by opening the app and looking at the data using SQLiteStudio. I even create a LOG to ...
1
vote
1answer
74 views
sqlite3_bind_text SQLITE_STATIC vs SQLITE_TRANSIENT for c++ string
I have a method that returns a c++ std::string, and then I convert it to a c_str() before passing it into sqlite3_bind_text. My question is, should this be using SQLITE_STATIC or SQLITE_TRANSIENT?
...
0
votes
2answers
34 views
Django ManyToManyField not present in Sqlite3
I'm new to Django and I have some issues with a ManyToMany relationship.
I work on a blastn automatisation and here are my classes:
class Annotation(models.Model):
sequence = ...
0
votes
1answer
62 views
Fresh RVM Installation on OS X, not able to run server due to sqlite3 issues
I installed rvm on my Mac OS X 10.6.8 (running Snow Leopard) and tried to start up my first sample app. After a few hours of fiddling around with the gems, I decided to post the issue here, because I ...
0
votes
0answers
47 views
phoneGap sqlite db.transaction
i have a javascript class having some function added to it using .prototype.. When i call these member functions as callbacks in phoneGap sqlite db.transaction, using "this" does not work.
function ...
-1
votes
4answers
52 views
SQLite query to match text string in column
I have a database column that contains text in CSV format. A sample cell looks like this:
Audi,Ford,Chevy,BMW,Toyota
I'd like to generate a query that matches any column with the string 'BMW'. How ...
1
vote
1answer
314 views
sqlite unable to open database file is encrypted or is not a database c#?
I am working on a windows application .net 2.0 with sqlite database, my connection string stays in app.config like
<connectionStrings>
<add name="SQLiteDB" connectionString="Data ...
0
votes
0answers
60 views
IOS sqlite update error [closed]
I've updated code. Now, I'm getting a result=0 on sqlite3_bind_text. Does 0 mean no record was updated or there's an error? Did anyone managed to get an update statement working in sqlite for ios?
...
2
votes
3answers
29 views
Dates in SQLite3, with a twist (inaccurate dates)
I am working on genealogical software that stores its data in SQLite3 format. Everything works fine, except for one minor detail. Not in all cases is the accuracy of the birth or death dates (etc) ...
-1
votes
2answers
38 views
SQL query involving MAX
I have the following table I'd like to write a query for:
Table name: Stats_State_County
Column name Type Constraint
-----------------------------------
Population number
CountyName ...
0
votes
0answers
53 views
Django Database Single Cell Overwrite
I am attempting to save a response from a text input to a single cell in a sqlite3 database table without writing over the rest of the information stored in that line of the table. I need to do this ...
0
votes
1answer
36 views
SQLite database for heavy read only production website
I have a Ruby on Rails web application that will require about 50 writes to the database to configure itself. Then the rest of the life of the application it will be involved with reading the ...
0
votes
1answer
32 views
Sqlite: Implementing a routine to rename columns including datatypes
I asked a similar question before but I did not get the answer I am looking for. I need some help with implementing rename columns (including datatypes) in Sqlite.
I am aware of the overall steps but ...
0
votes
1answer
11 views
Reference named expression in SQLite expression
I want to do something like this in sqlite3, where "...somelongexpression..." is a placeholder for my actual expression logic:
SELECT ...somelongexpression... AS subexpr, subexpr * 2 AS twicesubexpr ...
1
vote
1answer
34 views
Mysql2 and Sqlite3 in Rails
I have a rails application which uses two different types of databases : sqlite3 and mysql2.
I did some searching and managed to get this far, my database.yml file looks like this :
development:
...
-2
votes
1answer
19 views
How to determine the quantity of range values?
how to get the quantity of range values?
example:
FromMemberNo 100 ToMemberNo 101
so the QUANTITY will be 2.
Group FromMemberNo ToMemberNo
A 100 101
...
0
votes
0answers
25 views
Tutorials for Sqlite Custom UDF
How to create a custom User Defined Function and embed that into our Sqlite Database.
From, the official documentation I can only reach upto sqlite_create_function()..
Any Link or Example will be more ...
0
votes
1answer
79 views
What would the database tables look like if using Ebean ManyToOne relation?
I am using Ebean in the Play 2 framework. Both are quite new to me. I have two models Algorithm and Solution. (An Algorithm can own multiple Solutions.)
@Entity
public class Algorithm extends Model{
...
0
votes
3answers
41 views
How to exclude a specific value in my sql query?
I have the following query which outputs everything correctly except that I don't want one of the rows it's giving me:
SELECT r.Region_Cd, r.Region_Desc,
COUNT(a.Region) AS Count
FROM Region r
...
0
votes
1answer
28 views
SQLite 3 LEFT JOIN where 'IN' is search term
I've got a database table that needs to be joined to a table that contains countries. The LEFT JOIN is done on country ISO code and is as follows:
SELECT table1.city, table2.Country, table2.Flag
...
0
votes
1answer
65 views
sqlIte exception:table not found Exception in android
I am new to android.I am trying to read the database and put result into the List activity.following is entry activity.
package com.sanjay.listdemo;
import android.app.ListActivity;
import ...
-1
votes
1answer
24 views
SQL Query involving creating columns for displaying data
I'm having difficulties creating a query on the following table:
Table Stats:
Column name Type
_______________________________
STNAME String
AREANAME String
Population2010 ...
1
vote
2answers
24 views
SQLite query aggregation
I have two columns of data in a SQLite table: users and URL. I'm trying to construct a query that returns the users with a particular URL. I'm trying the following:
SELECT url, COUNT(url) as RESULT
...
0
votes
1answer
63 views
Import csv into sqlite with autoincrementing primary key
I am trying to create a table in sqlite that takes data from a csv file and adds an autoincrementing primary key to the first column.
Here is the table I am trying to insert data into:
DROP TABLE IF ...
0
votes
1answer
41 views
Create trigger for sqlite database that prevents insert
I'm trying to make a trigger for a sqlite database that represents a school. I have a table called Administrators with this schema:
CREATE TABLE Administrators(
ssn INT CHECK(ssn > 100000000),
...
0
votes
3answers
37 views
Something syntactically wrong with this SQL statement?
I keep getting an error when I try running this query in mysqlite3:
SELECT Region_DESC, AgeGroup, Population
(select REGION, sum(POPULATION) as Population, '0-15' AS AgeGroup
from STATS
Where Age ...
0
votes
1answer
29 views
How to retrieve a specific field of data in parent key from child key in sqlite3 python?
How to retrieve a specific field of data in parent key from child key in sqlite3 python?
CREATE TABLE artist(
artistid INTEGER PRIMARY KEY,
artistname TEXT
);
CREATE TABLE track(
trackid ...

