summaryrefslogtreecommitdiffstats
path: root/Modules/_sqlite/module.c
Commit message (Collapse)AuthorAgeFilesLines
* [2.7] prefix internal sqlite symbols with _pysqlite_ (GH-8215). (GH-8217)Benjamin Peterson2018-07-101-8/+8
| | | | | (cherry picked from commit 7762e4d3872818272800dfbd8e1d8e3a689eb8f2) Co-authored-by: Benjamin Peterson <benjamin@python.org>
* Merged code from pysqlite 2.6.0.Gerhard Häring2010-03-051-1/+1
|
* #5615: make it possible to configure --without-threads again.Georg Brandl2009-04-051-0/+2
|
* Fixes issue #3103. In the sqlite3 module, made one more function static. All ↵Gerhard Häring2008-09-121-4/+4
| | | | renaming public symbos now have the pysqlite prefix to avoid name clashes. This at least once created problems where the same symbol name appeared somewhere in Apache and the sqlite3 module was used from mod_python.
* #3312: fix two sqlite3 crashes.Georg Brandl2008-07-161-1/+4
|
* Expand docstrings of sqlite3 functions.Georg Brandl2008-06-221-12/+52
|
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-3/+3
| | | | | | | http://mail.python.org/pipermail/python-dev/2008-June/079988.html Python 2.6 should stick with PyString_* in its codebase. The PyBytes_* names in the spirit of 3.0 are available via a #define only. See the email thread.
* Renamed PyString to PyBytesChristian Heimes2008-05-261-3/+3
|
* Updated to pysqlite 2.4.1. Documentation additions will come later.Gerhard Häring2008-02-291-24/+34
|
* Merged changes from standalone version 2.3.3. This should probably all beGerhard Häring2007-01-141-63/+56
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | merged into the 2.5 maintenance branch: - self->statement was not checked while fetching data, which could lead to crashes if you used the pysqlite API in unusual ways. Closing the cursor and continuing to fetch data was enough. - Converters are stored in a converters dictionary. The converter name is uppercased first. The old upper-casing algorithm was wrong and was replaced by a simple call to the Python string's upper() method instead. -Applied patch by Glyph Lefkowitz that fixes the problem with subsequent SQLITE_SCHEMA errors. - Improvement to the row type: rows can now be iterated over and have a keys() method. This improves compatibility with both tuple and dict a lot. - A bugfix for the subsecond resolution in timestamps. - Corrected the way the flags PARSE_DECLTYPES and PARSE_COLNAMES are checked for. Now they work as documented. - gcc on Linux sucks. It exports all symbols by default in shared libraries, so if symbols are not unique it can lead to problems with symbol lookup. pysqlite used to crash under Apache when mod_cache was enabled because both modules had the symbol cache_init. I fixed this by applying the prefix pysqlite_ almost everywhere. Sigh.
* Merged changes from external pysqlite 2.3.0 release. Documentation updates willGerhard Häring2006-06-131-35/+115
| | | | follow in a few hours at the latest. Then we should be ready for beta1.
* More memory leaks from valgrindNeal Norwitz2006-06-021-0/+4
|
* Updated the sqlite3 module to the external pysqlite 2.2.2 version.Gerhard Häring2006-04-231-4/+4
|
* upgrade to final version of pysqlite 2.2.0Anthony Baxter2006-04-051-11/+11
|
* Update to pysqlite 2.2.0Anthony Baxter2006-04-041-28/+63
|
* merged the sqlite-integration branch.Anthony Baxter2006-04-011-0/+290
This is based on pysqlite2.1.3, and provides a DB-API interface in the standard library. You'll need sqlite 3.2.2 or later to build this - if you have an earlier version, the C extension module will not be built.