.. method:: setinputsizes(sizes)
- Required by the DB-API. Is a no-op in :mod:`sqlite3`.
+ Required by the DB-API. Does nothing in :mod:`sqlite3`.
.. method:: setoutputsize(size [, column])
- Required by the DB-API. Is a no-op in :mod:`sqlite3`.
+ Required by the DB-API. Does nothing in :mod:`sqlite3`.
.. attribute:: rowcount
"setinputsizes($self, sizes, /)\n"
"--\n"
"\n"
-"Required by DB-API. Does nothing in pysqlite.");
+"Required by DB-API. Does nothing in sqlite3.");
#define PYSQLITE_CURSOR_SETINPUTSIZES_METHODDEF \
{"setinputsizes", (PyCFunction)pysqlite_cursor_setinputsizes, METH_O, pysqlite_cursor_setinputsizes__doc__},
"setoutputsize($self, size, column=None, /)\n"
"--\n"
"\n"
-"Required by DB-API. Does nothing in pysqlite.");
+"Required by DB-API. Does nothing in sqlite3.");
#define PYSQLITE_CURSOR_SETOUTPUTSIZE_METHODDEF \
{"setoutputsize", (PyCFunction)(void(*)(void))pysqlite_cursor_setoutputsize, METH_FASTCALL, pysqlite_cursor_setoutputsize__doc__},
{
return pysqlite_cursor_close_impl(self);
}
-/*[clinic end generated code: output=ab1375c060ff7021 input=a9049054013a1b77]*/
+/*[clinic end generated code: output=1bee279bc861f6d3 input=a9049054013a1b77]*/
sizes: object
/
-Required by DB-API. Does nothing in pysqlite.
+Required by DB-API. Does nothing in sqlite3.
[clinic start generated code]*/
static PyObject *
pysqlite_cursor_setinputsizes(pysqlite_Cursor *self, PyObject *sizes)
-/*[clinic end generated code: output=893c817afe9d08ad input=7cffbb168663bc69]*/
+/*[clinic end generated code: output=893c817afe9d08ad input=de7950a3aec79bdf]*/
{
Py_RETURN_NONE;
}
column: object = None
/
-Required by DB-API. Does nothing in pysqlite.
+Required by DB-API. Does nothing in sqlite3.
[clinic start generated code]*/
static PyObject *
pysqlite_cursor_setoutputsize_impl(pysqlite_Cursor *self, PyObject *size,
PyObject *column)
-/*[clinic end generated code: output=018d7e9129d45efe input=077b017da58b9389]*/
+/*[clinic end generated code: output=018d7e9129d45efe input=607a6bece8bbb273]*/
{
Py_RETURN_NONE;
}