add missing docs
authorMichael Wallner <mike@php.net>
Wed, 13 Mar 2019 14:26:12 +0000 (15:26 +0100)
committerMichael Wallner <mike@php.net>
Wed, 13 Mar 2019 14:26:12 +0000 (15:26 +0100)
pq/Cursor/closeAsync.md [new file with mode: 0644]
pq/Cursor/openAsync.md [new file with mode: 0644]
pq/Transaction/unlinkLOB.md [new file with mode: 0644]

diff --git a/pq/Cursor/closeAsync.md b/pq/Cursor/closeAsync.md
new file mode 100644 (file)
index 0000000..4788521
--- /dev/null
@@ -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 (file)
index 0000000..9083f22
--- /dev/null
@@ -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 (file)
index 0000000..0f847cb
--- /dev/null
@@ -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