Home
last modified time | relevance | path

Searched refs:pysqlite_InterfaceError (Results 1 – 5 of 5) sorted by relevance

/aosp_15_r20/external/python/cpython2/Modules/_sqlite/
Dmodule.c38 PyObject* pysqlite_Error, *pysqlite_Warning, *pysqlite_InterfaceError, *pysqlite_DatabaseError, variable
353 …if (!(pysqlite_InterfaceError = PyErr_NewException(MODULE_NAME ".InterfaceError", pysqlite_Error, … in init_sqlite3()
356 PyDict_SetItemString(dict, "InterfaceError", pysqlite_InterfaceError); in init_sqlite3()
Dstatement.c276 …PyErr_Format(pysqlite_InterfaceError, "Error binding parameter %d - probably unsupported type.", i… in pysqlite_statement_bind_parameters()
321 …PyErr_Format(pysqlite_InterfaceError, "Error binding parameter :%s - probably unsupported type.", … in pysqlite_statement_bind_parameters()
Dmodule.h32 extern PyObject* pysqlite_InterfaceError;
Dcursor.c307 PyErr_SetString(pysqlite_InterfaceError, errmsg_fetch_across_rollback); in _pysqlite_fetch_one_row()
884 PyErr_SetString(pysqlite_InterfaceError, errmsg_fetch_across_rollback); in pysqlite_cursor_iternext()
Dconnection.c205 self->InterfaceError = pysqlite_InterfaceError; in pysqlite_connection_init()