PyObject* _pysqlite_query_execute(pysqlite_Cursor* self, int multiple, PyObject* args)
{
PyObject* operation;
- const char* operation_cstr;
- Py_ssize_t operation_len;
PyObject* parameters_list = NULL;
PyObject* parameters_iter = NULL;
PyObject* parameters = NULL;
pysqlite_statement_reset(self->statement);
}
- operation_cstr = PyUnicode_AsUTF8AndSize(operation, &operation_len);
- if (operation_cstr == NULL)
- goto error;
-
/* reset description and rowcount */
Py_INCREF(Py_None);
Py_SETREF(self->description, Py_None);