30080fd63d29e736e64d4d7b790f36485e0099b1 |
|
27-May-2014 |
Serhiy Storchaka <storchaka@gmail.com> |
Issue #10203: sqlite3.Row now truly supports sequence protocol. In particular it supports reverse() and negative indices. Original patch by Claudiu Popa.
/external/python/cpython2/Lib/sqlite3/dbapi2.py
|
e41a4634c979f6c31b26302568ec249f575fe370 |
|
26-Feb-2013 |
Petri Lehtinen <petri@digip.org> |
Issue #14720: Enhance sqlite3 microsecond conversion, document its behavior
/external/python/cpython2/Lib/sqlite3/dbapi2.py
|
9e14755b46c48207b44be92093ca2eae6ba22fac |
|
23-Feb-2013 |
Petri Lehtinen <petri@digip.org> |
Issue #14720: sqlite3: Convert datetime microseconds correctly Patch by Lowe Thiderman
/external/python/cpython2/Lib/sqlite3/dbapi2.py
|
cf297cd73fab50bac9bf143e14b227a33ccbd06e |
|
04-Aug-2008 |
Brett Cannon <bcannon@gmail.com> |
Remove usage of apply() in sqlite3 to silence warnings under -3.
/external/python/cpython2/Lib/sqlite3/dbapi2.py
|
0741a60ca7b332b755d8a6b3328da414f963f7b4 |
|
14-Jan-2007 |
Gerhard Häring <gh@ghaering.de> |
Merged changes from standalone version 2.3.3. This should probably all be 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.
/external/python/cpython2/Lib/sqlite3/dbapi2.py
|
3e99c0ad649de0393d9a8af17f34d9d1f55f4ab2 |
|
23-Apr-2006 |
Gerhard Häring <gh@ghaering.de> |
Updated the sqlite3 module to the external pysqlite 2.2.2 version.
/external/python/cpython2/Lib/sqlite3/dbapi2.py
|
c51ee69b27a35bb45e501766dd33674eae7ddb30 |
|
01-Apr-2006 |
Anthony Baxter <anthonybaxter@gmail.com> |
merged the sqlite-integration branch. 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.
/external/python/cpython2/Lib/sqlite3/dbapi2.py
|