Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
Dmodule.h32 extern PyObject* pysqlite_InterfaceError;
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.c269 …PyErr_Format(pysqlite_InterfaceError, "Error binding parameter %d - probably unsupported type.", i… in pysqlite_statement_bind_parameters()
314 …PyErr_Format(pysqlite_InterfaceError, "Error binding parameter :%s - probably unsupported type.", … in pysqlite_statement_bind_parameters()
Dcursor.c320 PyErr_SetString(pysqlite_InterfaceError, errmsg_fetch_across_rollback); in _pysqlite_fetch_one_row()
895 PyErr_SetString(pysqlite_InterfaceError, errmsg_fetch_across_rollback); in pysqlite_cursor_iternext()
Dconnection.c202 self->InterfaceError = pysqlite_InterfaceError; in pysqlite_connection_init()