Searched refs:pysqlite_InterfaceError (Results 1 – 5 of 5) sorted by relevance
/aosp_15_r20/external/python/cpython2/Modules/_sqlite/ |
D | module.c | 38 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()
|
D | statement.c | 276 …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()
|
D | module.h | 32 extern PyObject* pysqlite_InterfaceError;
|
D | cursor.c | 307 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()
|
D | connection.c | 205 self->InterfaceError = pysqlite_InterfaceError; in pysqlite_connection_init()
|