From bb655975e17b5ac8843af330fdc31dd1f13a1c11 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Wed, 13 Mar 2019 15:26:12 +0100 Subject: [PATCH] add missing docs --- pq/Cursor/closeAsync.md | 14 ++++++++++++++ pq/Cursor/openAsync.md | 14 ++++++++++++++ pq/Transaction/unlinkLOB.md | 19 +++++++++++++++++++ 3 files changed, 47 insertions(+) create mode 100644 pq/Cursor/closeAsync.md create mode 100644 pq/Cursor/openAsync.md create mode 100644 pq/Transaction/unlinkLOB.md diff --git a/pq/Cursor/closeAsync.md b/pq/Cursor/closeAsync.md new file mode 100644 index 0000000..4788521 --- /dev/null +++ b/pq/Cursor/closeAsync.md @@ -0,0 +1,14 @@ +# void pq\Cursor::closeAsync() + +[Asynchronously](pq/Connection/: Asynchronous Usage) close an open cursor. +See pq\Cursor::close(). + +## Params: + +None. + +## Throws: + +* pq\Exception\InvalidArgumentException +* pq\Exception\BadMethodCallException +* pq\Exception\RuntimeException diff --git a/pq/Cursor/openAsync.md b/pq/Cursor/openAsync.md new file mode 100644 index 0000000..9083f22 --- /dev/null +++ b/pq/Cursor/openAsync.md @@ -0,0 +1,14 @@ +# void pq\Cursor::openAsync() + +[Asynchronously](pq/Connection/: Asynchronous Usage) reopen a cursor. +See pq\Cursor::open(). + +## Params: + +None. + +## Throws: + +* pq\Exception\InvalidArgumentException +* pq\Exception\BadMethodCallException +* pq\Exception\RuntimeException diff --git a/pq/Transaction/unlinkLOB.md b/pq/Transaction/unlinkLOB.md new file mode 100644 index 0000000..0f847cb --- /dev/null +++ b/pq/Transaction/unlinkLOB.md @@ -0,0 +1,19 @@ +# void pq\Transaction::unlinkLOB(int $oid) + +Unlink a *large object*. +See pq\Transaction::createLOB(). + +## Params: + +* int $oid + The OID of the *large object*. + +## Returns: + +* pq\LOB, instance of the opened *large object*. + +## Throws: + +* pq\Exception\InvalidArgumentException +* pq\Exception\BadMethodCallException +* pq\Exception\RuntimeException -- 2.30.2