Home
last modified time | relevance | path

Searched refs:allow_8bit_chars (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Modules/_sqlite/
Dstatement.h49 …ement_bind_parameter(pysqlite_Statement* self, int pos, PyObject* parameter, int allow_8bit_chars);
50 …te_statement_bind_parameters(pysqlite_Statement* self, PyObject* parameters, int allow_8bit_chars);
Dstatement.c106 …tement_bind_parameter(pysqlite_Statement* self, int pos, PyObject* parameter, int allow_8bit_chars) in pysqlite_statement_bind_parameter() argument
147 if (paramtype == TYPE_STRING && !allow_8bit_chars) { in pysqlite_statement_bind_parameter()
217 …ite_statement_bind_parameters(pysqlite_Statement* self, PyObject* parameters, int allow_8bit_chars) in pysqlite_statement_bind_parameters() argument
271 rc = pysqlite_statement_bind_parameter(self, i + 1, adapted, allow_8bit_chars); in pysqlite_statement_bind_parameters()
316 rc = pysqlite_statement_bind_parameter(self, i, adapted, allow_8bit_chars); in pysqlite_statement_bind_parameters()
Dcursor.c453 int allow_8bit_chars; in _pysqlite_query_execute() local
463 allow_8bit_chars = ((self->connection->text_factory != (PyObject*)&PyUnicode_Type) && in _pysqlite_query_execute()
628 pysqlite_statement_bind_parameters(self->statement, parameters, allow_8bit_chars); in _pysqlite_query_execute()