Lines Matching refs:pysqlite_Connection
115 class _sqlite3.Connection "pysqlite_Connection *" "clinic_state()->ConnectionType"
119 static void _pysqlite_drop_unused_cursor_references(pysqlite_Connection* self);
123 static void connection_close(pysqlite_Connection *self);
127 new_statement_cache(pysqlite_Connection *self, pysqlite_state *state,
176 pysqlite_connection_init_impl(pysqlite_Connection *self, PyObject *database,
296 connection_traverse(pysqlite_Connection *self, visitproc visit, void *arg)
321 connection_clear(pysqlite_Connection *self)
335 free_callback_contexts(pysqlite_Connection *self)
343 connection_close(pysqlite_Connection *self)
359 connection_dealloc(pysqlite_Connection *self)
381 pysqlite_connection_cursor_impl(pysqlite_Connection *self, PyObject *factory)
435 blobopen_impl(pysqlite_Connection *self, const char *table, const char *col,
464 obj->connection = (pysqlite_Connection *)Py_NewRef(self);
498 pysqlite_connection_close_impl(pysqlite_Connection *self)
525 int pysqlite_check_connection(pysqlite_Connection* con)
552 pysqlite_connection_commit_impl(pysqlite_Connection *self)
589 pysqlite_connection_rollback_impl(pysqlite_Connection *self)
904 static void _pysqlite_drop_unused_cursor_references(pysqlite_Connection* self)
1001 pysqlite_connection_create_function_impl(pysqlite_Connection *self,
1153 create_window_function_impl(pysqlite_Connection *self, PyTypeObject *cls,
1212 pysqlite_connection_create_aggregate_impl(pysqlite_Connection *self,
1389 pysqlite_connection_set_authorizer_impl(pysqlite_Connection *self,
1432 pysqlite_connection_set_progress_handler_impl(pysqlite_Connection *self,
1468 pysqlite_connection_set_trace_callback_impl(pysqlite_Connection *self,
1519 pysqlite_connection_enable_load_extension_impl(pysqlite_Connection *self,
1555 pysqlite_connection_load_extension_impl(pysqlite_Connection *self,
1580 int pysqlite_check_thread(pysqlite_Connection* self)
1595 static PyObject* pysqlite_connection_get_isolation_level(pysqlite_Connection* self, void* unused)
1606 static PyObject* pysqlite_connection_get_total_changes(pysqlite_Connection* self, void* unused)
1615 static PyObject* pysqlite_connection_get_in_transaction(pysqlite_Connection* self, void* unused)
1627 pysqlite_connection_set_isolation_level(pysqlite_Connection* self, PyObject* isolation_level, void *Py_UNUSED(ignored))
1651 pysqlite_connection_call(pysqlite_Connection *self, PyObject *args,
1686 pysqlite_connection_execute_impl(pysqlite_Connection *self, PyObject *sql,
1719 pysqlite_connection_executemany_impl(pysqlite_Connection *self,
1751 pysqlite_connection_executescript(pysqlite_Connection *self,
1838 pysqlite_connection_interrupt_impl(pysqlite_Connection *self)
1866 pysqlite_connection_iterdump_impl(pysqlite_Connection *self)
1912 target: object(type='pysqlite_Connection *', subclass_of='clinic_state()->ConnectionType')
1923 pysqlite_connection_backup_impl(pysqlite_Connection *self,
1924 pysqlite_Connection *target, int pages,
2029 pysqlite_connection_create_collation_impl(pysqlite_Connection *self,
2092 serialize_impl(pysqlite_Connection *self, const char *name)
2147 deserialize_impl(pysqlite_Connection *self, Py_buffer *data,
2203 pysqlite_connection_enter_impl(pysqlite_Connection *self)
2226 pysqlite_connection_exit_impl(pysqlite_Connection *self, PyObject *exc_type,
2281 setlimit_impl(pysqlite_Connection *self, int category, int limit)
2307 getlimit_impl(pysqlite_Connection *self, int category)
2356 {"Warning", T_OBJECT, offsetof(pysqlite_Connection, Warning), READONLY},
2357 {"Error", T_OBJECT, offsetof(pysqlite_Connection, Error), READONLY},
2358 {"InterfaceError", T_OBJECT, offsetof(pysqlite_Connection, InterfaceError), READONLY},
2359 {"DatabaseError", T_OBJECT, offsetof(pysqlite_Connection, DatabaseError), READONLY},
2360 {"DataError", T_OBJECT, offsetof(pysqlite_Connection, DataError), READONLY},
2361 {"OperationalError", T_OBJECT, offsetof(pysqlite_Connection, OperationalError), READONLY},
2362 {"IntegrityError", T_OBJECT, offsetof(pysqlite_Connection, IntegrityError), READONLY},
2363 {"InternalError", T_OBJECT, offsetof(pysqlite_Connection, InternalError), READONLY},
2364 {"ProgrammingError", T_OBJECT, offsetof(pysqlite_Connection, ProgrammingError), READONLY},
2365 {"NotSupportedError", T_OBJECT, offsetof(pysqlite_Connection, NotSupportedError), READONLY},
2366 {"row_factory", T_OBJECT, offsetof(pysqlite_Connection, row_factory)},
2367 {"text_factory", T_OBJECT, offsetof(pysqlite_Connection, text_factory)},
2386 .basicsize = sizeof(pysqlite_Connection),