Home
last modified time | relevance | path

Searched refs:blobopen (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Lib/test/test_sqlite3/
Dtest_dbapi.py1198 self.blob = self.cx.blobopen("test", "b", 1)
1301 ro_blob = self.cx.blobopen("test", "b", 1, readonly=True)
1317 self.cx.blobopen(*args, **kwds)
1454 with self.cx.blobopen("test", "b", 1) as blob:
1467 with self.cx.blobopen("test", "b", 1) as blob:
1475 blob = cx.blobopen("test", "b", 1)
1504 blob = cx.blobopen("test", "b", 1)
1516 cx.blobopen('t', 't', rowid)
1560 lambda: self.con.blobopen("test", "b", 1),
/external/python/cpython3/Modules/_sqlite/clinic/
Dconnection.c.h249 {"blobopen", _PyCFunction_CAST(blobopen), METH_FASTCALL|METH_KEYWORDS, blobopen__doc__},
256 blobopen(pysqlite_Connection *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in blobopen() function
/external/python/cpython3/Doc/library/
Dsqlite3.rst632 .. method:: blobopen(table, column, row, /, *, readonly=False, name="main")
1779 with con.blobopen("test", "blob_col", 1) as blob:
1787 with con.blobopen("test", "blob_col", 1) as blob:
/external/python/cpython3/Misc/NEWS.d/
D3.11.0b1.rst1705 Add :meth:`~sqlite3.Connection.blobopen` to :class:`sqlite3.Connection`.
D3.12.0b1.rst952 Fix potential :exc:`OverflowError` in :meth:`sqlite3.Connection.blobopen`
/external/python/cpython3/Doc/whatsnew/
D3.11.rst1009 * Add :meth:`~sqlite3.Connection.blobopen` to :class:`sqlite3.Connection`.