Home
last modified time | relevance | path

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

/aosp_15_r20/external/python/cpython3/Lib/test/test_sqlite3/
Dtest_dbapi.py1157 self.blob = self.cx.blobopen("test", "b", 1)
1258 ro_blob = self.cx.blobopen("test", "b", 1, readonly=True)
1274 self.cx.blobopen(*args, **kwds)
1408 with self.cx.blobopen("test", "b", 1) as blob:
1421 with self.cx.blobopen("test", "b", 1) as blob:
1429 blob = cx.blobopen("test", "b", 1)
1458 blob = cx.blobopen("test", "b", 1)
1470 cx.blobopen('t', 't', rowid)
1514 lambda: self.con.blobopen("test", "b", 1),
/aosp_15_r20/external/python/cpython3/Modules/_sqlite/clinic/
Dconnection.c.h161 {"blobopen", _PyCFunction_CAST(blobopen), METH_FASTCALL|METH_KEYWORDS, blobopen__doc__},
168 blobopen(pysqlite_Connection *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in blobopen() function
/aosp_15_r20/external/python/cpython3/Misc/NEWS.d/
D3.11.4.rst347 Fix potential :exc:`OverflowError` in :meth:`sqlite3.Connection.blobopen`
D3.11.0b1.rst1704 Add :meth:`~sqlite3.Connection.blobopen` to :class:`sqlite3.Connection`.
/aosp_15_r20/external/python/cpython3/Doc/library/
Dsqlite3.rst568 .. method:: blobopen(table, column, row, /, *, readonly=False, name="main")
1597 with con.blobopen("test", "blob_col", 1) as blob:
1605 with con.blobopen("test", "blob_col", 1) as blob:
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/
D3.11.rst993 * Add :meth:`~sqlite3.Connection.blobopen` to :class:`sqlite3.Connection`.