A DB-API2 compliant module in Python for interacting with a SQLite relational database.
0
votes
1answer
34 views
Python sqlite copy table from one database to another
I'm using python 2.7 with the builtin sqlite3 module on Windows XP. The code looks like the following:
#!/usr/bin/env python2
import sqlite3
import sys
def open_db(nam):
conn = ...
0
votes
1answer
42 views
How to tell whether an update statement is successful in pysqlite 2.6.3
I'm using pysqlite to talk to a SQLite db, and I wonder what is the right way to check whether an UPDATE SQL statement has actually successfully update something in a table.
Is there a variable I can ...
0
votes
0answers
54 views
GeoDjango and Spatialite on Mac: issue with C extension Loading
I'm following the GeoDjango Tutorial to set up a dev spatial DB for my project on my home machine, a Mac Mini running OSX 10.8.2. I installed the KyngChaos packages (UnixImageIO, PROJ, GEOS, SQLite3 ...
0
votes
1answer
261 views
Inserting JSON data to sqlite - OperationalError: unrecognized token “{”
I'm doing something like this in my code:
import sqlite3
...
sqlString=company['name']+","+simplejson.dumps(info)
cur.execute("INSERT INTO companyInfo VALUES("+sqlString+")")
but I'm getting the ...
0
votes
0answers
553 views
Python: SQLAlchemy ImportError: No module named pysqlite2
I'm running python 2.7.3 which I manually installed in my home directory as I don't have root access. 2.6.6 is installed on the system, but I really need 2.7. When I run the app, SQLAlchemy throws ...
1
vote
2answers
1k views
WARNING: IPython History requires SQLite, your history will not be saved
Hi I'm using Ubuntu release 12.10 (quantal) 32-bit with Linux Kernel 3.5.0-21-generic. I'm trying to get IPython's History to work. I've set it up using pythonbrew and a virtual environment. In there ...
0
votes
1answer
146 views
How to install pysqlite2 on Debian Squeeze?
I have a bit of a problem. I am on Debian Squeeze, and I want to install sqlite2. The problem is, when I try with:
# pip install pysqlite2
I get:
Downloading/unpacking pysqlite2
Could not find any ...
0
votes
1answer
37 views
Installing pysqlite via tox
I have several test folders set up to use tox. They all have pysqlite as a requirement, either for the package itself, or for the tests to run. I've been running these packages using tox, and ...
1
vote
1answer
284 views
pip - Cannot uninstall pysqlite
I'm simply trying to remove pysqlite from my system using pip.
What I get doing so make no sense:
$ pip uninstall pysqlite
Command worked, but watch this:
$ pip freeze
[...]
pysqlite==1.0.1
...
0
votes
1answer
98 views
pysqlite segmentation fault?
I am on OSX 10.6 and have recently upgraded my Python from 2.6 to 2.7, so I had to upgrade python packages.
This time I decided to go with brew and installed sqlite, libspatialite and ...
3
votes
1answer
140 views
Issue with SQLite DROP TABLE statement
EDIT: At this point, I found the errant typo that was responsible, and my question has become "How did the typo that I made cause the error that I received" and "How might I have better debugged this ...
2
votes
1answer
1k views
ImportError: No module named pysqlite2
Why does
from pysqlite2 import dbapi2 as sqlite
cause
ImportError: No module named pysqlite2
Isn't pysqlite2 already installed in Python 2.6.5?
0
votes
2answers
94 views
How to fix this pysqlite2 AttributeError: X instance has no attribute 'con'?
When I run the entire code below, this line:
res=self.con.execute(
From this function (where getfeatures returns a dictionary):
def fcount(self,f,cat):
res=self.con.execute(
'select ...
0
votes
1answer
250 views
Installing pysqlite in python with sqlite 3 version with custom file header
I wan to compile sqlite with custom file header
I followed the step given here http://trac.edgewall.org/wiki/PySqlite
Download pysqlite
Extract it
export ...
0
votes
1answer
91 views
How do I efficiently process db queries for freq dist computation?
I've been working on this for a bit of time now, trying to create a frequency distribution database side:
from itertools import permutations
import sqlite3
def ...
3
votes
2answers
145 views
Serialising a list into SQLite
I am working with over 29 million elements, so thought a database would make more sense than an array.
Previously I was passing elements one at a time to the execute function, but I believe passing ...
0
votes
3answers
90 views
Decorator isn't passing arguments?
I've been working on serialising a n-dimensional array into a 1-dimensional "array" database:
from collections import Iterable, Mapping
import sqlite3
def pass_many(vals, some_funct, args=()):
...
0
votes
4answers
153 views
Passing a member function as a function arg?
I've written a very simple select function for SQLite, but I'm confused at how to pass a member function... e.g.: .fetchone(), .fetchmany().
def select(cursor, select="*", table="reuters", ...
1
vote
0answers
231 views
Sqlite 2 python using a python tempfile
I'm experiencing some strange behavior from sqlite using a database stored as a python tempfile. Essentially, querying the sqlite_master table works fine, but querying another table returns:
...
3
votes
2answers
329 views
SQLite - calculate moving average
i have an table in sqlite using pysqlite:
create table t
(
id integer primary key not null,
time datetime not null,
price decimal(5,2)
)
how can i from this data calculate moving ...
0
votes
1answer
168 views
pysqlite and python : wont insert data into table but code executes fine
I am trying to insert some data into a pysqlite database but even tho the code runs fine with no errors nothing shows up in the database and i have made sure that the variable does contain a value
...
0
votes
1answer
117 views
Error in the Django development server (“runserver”)
I'm new to python and django and following the footsteps of "Django Book" I've django installed, including obtaining the following verification to import django in python:
>>>Import django
...
6
votes
2answers
368 views
pysqlite: Placeholder substitution for column or table names?
Using pysqlite I am making a procedure to do something with some data. The same kind of operation is done on similar fields in multiple tables and columns, so I thought I could parameterize the sql ...
1
vote
0answers
424 views
sqlite3.OperationalError: no such column
The following works in SQLite Manager, but doesn't in Python. I get the following error:
sqlite3.OperationalError: no such column: domain_list.short_name
I've tried taking out the "AS ...
2
votes
1answer
275 views
Building Python 2.5 with full Sqlite3 as a user on linux
This is a bit of a complex problem, at least for me. Here it goes:
I'm working as a user on linux server and it's safe to assume that installing any package not already installed is simply ...
2
votes
5answers
137 views
Future Development in Python 2.4
I'm starting a new python project at work that is targeted primarily at RHEL5 machines that may be upgraded to RHEL6 in couple years. Given that python 2.4 is standard on RHEL5 and the system admins ...
0
votes
1answer
419 views
Big SELECT with SQLite
I am glad to post my first question today. First, please excuse my poor English.
I am using SQLite inside a Python code for some easy big file management system.
Concretely, I have a big flat file ...
0
votes
2answers
163 views
Digi ConnectPort Database adapter
I have a Digi ConnectPort X4 here and I am going to run a simple web server on it to serve the information from the ZigBee network that is attached.
The HTTPBaseServer and subclasses are pure Python ...
0
votes
0answers
178 views
could not convert BLOB to Buffer - Sqlite3
I am trying to store an html as a blob in a sqlite3 DB. However, I get the following error "could not convert BLOB to Buffer". I could store the html as a TEXT but I am running into unicode errors.
...
0
votes
1answer
622 views
Inserting/Updating sqlite table from python program
I have a sqlite3 table as shown below
Record(WordID INTEGER PRIMARY KEY, Word TEXT, Wordcount INTEGER, Docfrequency REAL).
I want to create and insert data into this table if the table not exists ...
0
votes
2answers
104 views
pysqlite, save database, and open it later
Newbie to sql and sqlite.
I'm trying to save a database, then copy the file.db to another folder and open it. So far I created the database, copy and pasted the file.db to another folder but when I ...
2
votes
2answers
2k views
Unable to compile PIL/pysqlite after OS X 10.7 Lion upgrade
After Lion upgrade, I had to reinstall my python packages, and ran into problem installing PIL and pysqlite.
...
unable to execute gcc-4.2: No such file or directory
error: command 'gcc-4.2' failed ...
4
votes
1answer
2k views
Basic pySQLite example?
Gang, I am beginning to play around with pySQLite and I'm trying to find an example that illustrates how to query the db for existing records before inserting a new record if it doesn't already exist ...
3
votes
3answers
5k views
Python: Unable to easy_install (Windows 7 x64)
I'm running python 2.7 on Windows 7 x64, and trying to easy_install pysqlite.
With command: easy_install -U pysqlite
It exits with the error:
error: Setup script exited with error: Unable to ...
1
vote
2answers
2k views
I can't get Python's executemany for sqlite3 to work properly
I was trying to use executemany to insert values into a database, but it just won't work for me. Here is a sample:
clist = []
clist.append("abc")
clist.append("def")
clist.append("ghi")
...
0
votes
1answer
38 views
Is their a unique signature value for the state of of an sqlite3 DB (or table)?
I was looking for some single value that tracked the writes to either the DB or an individual table in the DB.
I would like to say "This data was extracted at this time, from this DB, in this state"
...
1
vote
1answer
58 views
How do I enable transactional DDL in pysqlite?
I am using pysqlite which, by default, does not enable transactional DDL (although DDL is transactional from the sqlite3 client).
How do I enable transactional DDL within pysqlite?
2
votes
1answer
192 views
What's the difference between database object and cursor object in pysqlite2?
In Python one may interact with an sqlite database using the pysqlite2 class.
from pysqlite2 import dbapi2 as sqlite
One way to send commands to the database is through the database object:
db = ...
2
votes
1answer
155 views
Recovering database rows from an uncommitted transaction
We have a database that was written to by a program written in Python that uses the sqlite3 module. The database had a large number of insert statements executed on it, but the transaction was never ...
3
votes
1answer
1k views
python and sqlite - escape input
Using python with a sqlite DB - whats the method used for escaping the data going out and pulling the data coming out?
Using pysqlite2
Google has conflicting suggestions.
2
votes
1answer
364 views
Reproduce pysqlite's row_factory on apsw
I have been trying to migrate away from pysqlite to apsw but I can't
find a way to reproduce its row_factory function.
this is my original code:
connection = sqlite3.connect("db.db3")
...
2
votes
1answer
218 views
The open/close function of SQLite implementation
I'm trying to come up with SQLiteDB object, and following is the open/close code for it.
Does this work without problem? Am I missing something important?
For close(), I use con.close() and ...
3
votes
2answers
625 views
'from sqlite3 import dbapi2 as sqlite3' vs 'import sqlite3'?
When I see the examples for pysqlite, there are two use cases for the SQLite library.
from sqlite3 import dbapi2 as sqlite3
and
import sqlite3
Why there are two ways to support the sqlite3 api? ...
2
votes
3answers
444 views
How expensive sqlite3.connect and close in SQLite?
I use connect() and cursor() for using SQLite
self.connector = sqlite3.connect(self.dbFile)
self.cursor = self.connector.cursor()
And close() for stop using it.
self.cursor.close()
How ...
10
votes
3answers
3k views
“%s” % format vs “{0}”.format() vs “?” format
In this post about SQLite, aaronasterling told me that
cmd = "attach \"%s\" as toMerge" % "b.db" : is wrong
cmd = 'attach "{0}" as toMerge'.format("b.db") : is correct
cmd = "attach ? as toMerge"; ...
2
votes
4answers
2k views
pysqlite - how to save images
I need to save an image file into sqlite database in python. I could not find a solution. How can I do it?
Thanks in advance.
4
votes
3answers
1k views
Checking duplicate while inserting in SQLite
I am trying to insert a data into SQLite database using Python.
INSERT INTO DATA_TABLE(UID,LABEL) VALUES (NULL, "UK")
WHERE "UK" NOT EXISTS IN (SELECT LABEL FROM DATA_TABLE);
This query is ...
0
votes
1answer
159 views
atomic read from sqlite database while it is being written to
Is it possible to read from a sqlite database while it is being written to?
How would one go about accomplishing this?
Thanks!
1
vote
1answer
109 views
Pysqlite setup error
When intalling pysqlite on my Mac I get permission denied when it tries to create pysqlite2-doc dir. Any ideas why?
1
vote
2answers
80 views
sqlite usage and purpose
Could someone provide an examples about why sqlite db is needed and for which purposes,
especially if it can be used by security application?
