mirror of
https://github.com/python/cpython.git
synced 2025-07-29 14:15:07 +00:00
backport r243 from the pysqlite2 svn repository - lowers the required version
of SQLite3 from 3.2.2 to 3.0.8, by providing an alternative to sqlite3_transfer_bindings. setup.py also handles the common (in debian and ubuntu, at least) case of a buggy sqlite3.h SQLITE_VERSION_NUMBER.
This commit is contained in:
parent
7f6b67c235
commit
07f5b35e19
4 changed files with 171 additions and 130 deletions
|
@ -45,7 +45,10 @@ extern PyTypeObject StatementType;
|
|||
int statement_create(Statement* self, Connection* connection, PyObject* sql);
|
||||
void statement_dealloc(Statement* self);
|
||||
|
||||
int statement_recompile(Statement* self);
|
||||
int statement_bind_parameter(Statement* self, int pos, PyObject* parameter);
|
||||
void statement_bind_parameters(Statement* self, PyObject* parameters);
|
||||
|
||||
int statement_recompile(Statement* self, PyObject* parameters);
|
||||
int statement_finalize(Statement* self);
|
||||
int statement_reset(Statement* self);
|
||||
void statement_mark_dirty(Statement* self);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue