Tagged Questions

A DB-API2 compliant module in Python for interacting with a SQLite relational database.

learn more… | top users | synonyms

11
votes
5answers
4k views

pysqlite2: ProgrammingError - You must not use 8-bit bytestrings

I'm currently persisting filenames in a sqlite database for my own purposes. Whenever I try to insert a file that has a special character (like é etc.), it throws the following error: ...
6
votes
3answers
433 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"; ...
5
votes
5answers
661 views

Shall I bother with storing DateTime data as julianday in SQLite?

SQLite docs specifies that the preferred format for storing datetime values in the DB is to use Julian Day (using built-in functions). However, all frameworks I saw in python (pysqlite, SQLAlchemy) ...
4
votes
3answers
315 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 ...
4
votes
2answers
570 views

Change text_factory in Django/sqlite

I have a django project that uses a sqlite database that can be written to by an external tool. The text is supposed to be UTF-8, but in some cases there will be errors in the encoding. The text is ...
3
votes
1answer
411 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
1answer
357 views

Detect the FTS3 extension in SQLite3

What is the SQLite query to detect if the FTS3 extension module is installed? Or is it possible to get a list of installed extensions with an SQLite3 query? It has to work with pysqlite2. I know that ...
3
votes
4answers
1k views

Problem with SQLite executemany

I can't find my error in the following code. When it is run a type error is given for line: cur.executemany(sql % itr.next()) => 'function takes exactly 2 arguments (1 given), import sqlite3 con = ...
2
votes
1answer
15 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 ...
2
votes
5answers
94 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 ...
2
votes
1answer
131 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 ...
2
votes
1answer
461 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
109 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 ...
2
votes
2answers
38 views

sqlite usages and propsure

Could someone provide an examples about why sqlite db is needed and for which propuses , especially if it can be used by security application ?
2
votes
1answer
171 views

Override DEFINEs in setup.cfg in source eggs

The source egg of PySQLite 2.6.0 contains a file setup.cfg that looks like this: [build_ext] #define= #include_dirs=/usr/local/include #library_dirs=/usr/local/lib libraries=sqlite3 ...
2
votes
1answer
940 views

What is a difference between “sqlite” and “pysqlite2/sqlite3” modules?

I gave up to make "sqlite3" working but I just found out (with help("modules")) that I have "sqlite" module. I tested it (create table, insert some values and so on) and it works fine. But before I ...
2
votes
6answers
5k views

How to install pysqlite?

I am trying to install pysqlite (Python interface to the SQLite). I downloaded the file with the package (pysqlite-2.5.5.tar.gz). And I did the following: gunzip pysqlite-2.5.5.tar.gz tar xvf ...
2
votes
2answers
3k views

Django on CentOS

I'm looking to use Django on a shared host that's running an unknown version of CentOS. My main problem is trying to interface with a database. The server has MySQL installed, but not MySQL-python. I ...
1
vote
1answer
53 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 ...
1
vote
2answers
721 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 ...
1
vote
3answers
707 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 find ...
1
vote
1answer
518 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") ...
1
vote
1answer
41 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?
1
vote
1answer
73 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 = ...
1
vote
1answer
193 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") ...
1
vote
2answers
273 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? ...
1
vote
3answers
271 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 ...
1
vote
1answer
74 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
6answers
2k views

Python SQLite: database is locked

I'm trying this code: import sqlite connection = sqlite.connect('cache.db') cur = connection.cursor() cur.execute('''create table item (id integer primary key, itemno text unique, scancode ...
1
vote
2answers
523 views

What are the differences among sqlite3 from python2.5, pysqlite and apsw

I would like to know the differences among sqlite3 from python2.5, pysqlite and apsw? I have a bumpy run when trying to install pysqlite on windows vista with python2.5, see following: download ...
1
vote
3answers
446 views

How should I handle software packages?

I am trying to install pysqlite and have troubles with that. I found out that the most probable reason of that is missing sqlite headers and I have to install them. My platform: CentOS release 5.3 ...
1
vote
3answers
617 views

Python pysqlite not accepting my qmark parameterization

I think I am being a bonehead, maybe not importing the right package, but when I do... from pysqlite2 import dbapi2 as sqlite import types import re import sys ... def create_asgn(self): ...
0
votes
0answers
49 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 ...
0
votes
1answer
101 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
1answer
53 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
52 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
114 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
47 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 ...
0
votes
1answer
29 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" ...
0
votes
0answers
38 views

Fetching column names and default values once with pysqlite

I'm working on a python application that stores benchmarks of other programs in a sqlite DB. The information for two benchmarks of the same program might be widely different (different platform ...
0
votes
4answers
549 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.
0
votes
1answer
90 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!
0
votes
2answers
341 views
0
votes
2answers
1k views

Why my python does not see pysqlite?

I would like to have an interface between Python and sqlite. Both are installed on the machine. I had an old version of Python (2.4.3). So, pysqlite was not included by default. First, I tried to ...
0
votes
3answers
1k views

What are sqlite development headers and how to install them?

I am trying to install pysqlite and have troubles with that. I found out that the most probable reason of that is missing sqlite headers and I have to install them. However, I have no ideas what ...
0
votes
3answers
683 views

Why pysqlite does not work properly?

I tried to install pysqlite. Some suspicious things start to appear during the installation. Why I typed: python setup.py build I got the following message in the end: src/module.c:286: error: ...
0
votes
4answers
1k views

How to build sqlite for Python 2.4?

I would like to use pysqlite interface between Python and sdlite database. I have already Python and SQLite on my computer. But I have troubles with installation of pysqlite. During the installation I ...
0
votes
2answers
417 views

Cleaning up an internal pysqlite connection on object destruction

I have an object with an internal database connection that's active throughout its lifetime. At the end of the program's run, the connection has to be committed and closed. So far I've used an ...
0
votes
2answers
437 views

pysqlite user types in select statement

Using pysqlite how can a user-defined-type be used as a value in a comparison, e. g: “... WHERE columnName > userType”? For example, I've defined a bool type with the requisite registration, ...
-1
votes
1answer
506 views

How can I make Python see sqlite?

I cannot use sqlite3 (build python package). The reason of that is missing _sqlite3.so file. I found that peoples had the same problem and they resolved it here. To solve my problem I have to "install ...

1 2