Lines Matching defs:self

6 pysqlite_cursor_init_impl(pysqlite_Cursor *self,
10 pysqlite_cursor_init(PyObject *self, PyObject *args, PyObject *kwargs)
15 if ((Py_IS_TYPE(self, clinic_state()->CursorType) ||
16 Py_TYPE(self)->tp_new == clinic_state()->CursorType->tp_new) &&
28 return_value = pysqlite_cursor_init_impl((pysqlite_Cursor *)self, connection);
35 "execute($self, sql, parameters=(), /)\n"
44 pysqlite_cursor_execute_impl(pysqlite_Cursor *self, PyObject *sql,
48 pysqlite_cursor_execute(pysqlite_Cursor *self, PyObject *const *args, Py_ssize_t nargs)
70 return_value = pysqlite_cursor_execute_impl(self, sql, parameters);
77 "executemany($self, sql, seq_of_parameters, /)\n"
86 pysqlite_cursor_executemany_impl(pysqlite_Cursor *self, PyObject *sql,
90 pysqlite_cursor_executemany(pysqlite_Cursor *self, PyObject *const *args, Py_ssize_t nargs)
108 return_value = pysqlite_cursor_executemany_impl(self, sql, seq_of_parameters);
115 "executescript($self, sql_script, /)\n"
124 pysqlite_cursor_executescript_impl(pysqlite_Cursor *self,
128 pysqlite_cursor_executescript(pysqlite_Cursor *self, PyObject *arg)
146 return_value = pysqlite_cursor_executescript_impl(self, sql_script);
153 "fetchone($self, /)\n"
162 pysqlite_cursor_fetchone_impl(pysqlite_Cursor *self);
165 pysqlite_cursor_fetchone(pysqlite_Cursor *self, PyObject *Py_UNUSED(ignored))
167 return pysqlite_cursor_fetchone_impl(self);
171 "fetchmany($self, /, size=1)\n"
183 pysqlite_cursor_fetchmany_impl(pysqlite_Cursor *self, int maxrows);
186 pysqlite_cursor_fetchmany(pysqlite_Cursor *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
193 int maxrows = self->arraysize;
207 return_value = pysqlite_cursor_fetchmany_impl(self, maxrows);
214 "fetchall($self, /)\n"
223 pysqlite_cursor_fetchall_impl(pysqlite_Cursor *self);
226 pysqlite_cursor_fetchall(pysqlite_Cursor *self, PyObject *Py_UNUSED(ignored))
228 return pysqlite_cursor_fetchall_impl(self);
232 "setinputsizes($self, sizes, /)\n"
241 "setoutputsize($self, size, column=None, /)\n"
250 pysqlite_cursor_setoutputsize_impl(pysqlite_Cursor *self, PyObject *size,
254 pysqlite_cursor_setoutputsize(pysqlite_Cursor *self, PyObject *const *args, Py_ssize_t nargs)
269 return_value = pysqlite_cursor_setoutputsize_impl(self, size, column);
276 "close($self, /)\n"
285 pysqlite_cursor_close_impl(pysqlite_Cursor *self);
288 pysqlite_cursor_close(pysqlite_Cursor *self, PyObject *Py_UNUSED(ignored))
290 return pysqlite_cursor_close_impl(self);