summaryrefslogtreecommitdiffstats
path: root/Modules/_sqlite/statement.h
diff options
context:
space:
mode:
authorGerhard Häring <gh@ghaering.de>2008-03-28 20:08:36 (GMT)
committerGerhard Häring <gh@ghaering.de>2008-03-28 20:08:36 (GMT)
commit2a11c05b9d0ceac23a08418a2a2d26acc0993dc9 (patch)
tree33651a73732335c048ffd4e65092fcc2bcd406b6 /Modules/_sqlite/statement.h
parentd289ea6df96e9e24e17914070fd5c2594e44413e (diff)
downloadcpython-2a11c05b9d0ceac23a08418a2a2d26acc0993dc9.zip
cpython-2a11c05b9d0ceac23a08418a2a2d26acc0993dc9.tar.gz
cpython-2a11c05b9d0ceac23a08418a2a2d26acc0993dc9.tar.bz2
Update sqlite3 module to match current version of pysqlite.
Diffstat (limited to 'Modules/_sqlite/statement.h')
-rw-r--r--Modules/_sqlite/statement.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/_sqlite/statement.h b/Modules/_sqlite/statement.h
index 10b8823..bfa2091 100644
--- a/Modules/_sqlite/statement.h
+++ b/Modules/_sqlite/statement.h
@@ -1,6 +1,6 @@
/* statement.h - definitions for the statement type
*
- * Copyright (C) 2005 Gerhard Häring <gh@ghaering.de>
+ * Copyright (C) 2005-2007 Gerhard Häring <gh@ghaering.de>
*
* This file is part of pysqlite.
*
@@ -46,8 +46,8 @@ extern PyTypeObject pysqlite_StatementType;
int pysqlite_statement_create(pysqlite_Statement* self, pysqlite_Connection* connection, PyObject* sql);
void pysqlite_statement_dealloc(pysqlite_Statement* self);
-int pysqlite_statement_bind_parameter(pysqlite_Statement* self, int pos, PyObject* parameter);
-void pysqlite_statement_bind_parameters(pysqlite_Statement* self, PyObject* parameters);
+int pysqlite_statement_bind_parameter(pysqlite_Statement* self, int pos, PyObject* parameter, int allow_8bit_chars);
+void pysqlite_statement_bind_parameters(pysqlite_Statement* self, PyObject* parameters, int allow_8bit_chars);
int pysqlite_statement_recompile(pysqlite_Statement* self, PyObject* parameters);
int pysqlite_statement_finalize(pysqlite_Statement* self);