mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
added skeletons for missing functions
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@65279 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
cb32853d40
commit
4375c4d1da
1 changed files with 90 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.57 $ -->
|
||||
<!-- $Revision: 1.58 $ -->
|
||||
<reference id="ref.pgsql">
|
||||
<title>PostgreSQL functions</title>
|
||||
<titleabbrev>PostgreSQL</titleabbrev>
|
||||
|
@ -1768,6 +1768,95 @@ $dbconn4 = pg_connect ($conn_string);
|
|||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id='function.pg-get-result'>
|
||||
<refnamediv>
|
||||
<refname>pg_get_result</refname>
|
||||
<refpurpose>
|
||||
Get asynchronous query result
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>resource <function>pg_get_result</function></funcdef>
|
||||
<paramdef>resource <parameter><optional>connection</optional></parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
&warn.undocumented.func;
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id='function.pg-request-cancel'>
|
||||
<refnamediv>
|
||||
<refname>pg_request_cancel</refname>
|
||||
<refpurpose>
|
||||
Cancel request
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>bool <function>pg_request_cancel</function></funcdef>
|
||||
<paramdef>resource <parameter><optional>connection</optional></parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
&warn.undocumented.func;
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id='function.pg-is-busy'>
|
||||
<refnamediv>
|
||||
<refname>pg_is_busy</refname>
|
||||
<refpurpose>
|
||||
Get connection is busy or not
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>bool <function>pg_is_busy</function></funcdef>
|
||||
<paramdef>resource <parameter><optional>connection</optional></parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
&warn.undocumented.func;
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id='function.pg-send-query'>
|
||||
<refnamediv>
|
||||
<refname>pg_send_query</refname>
|
||||
<refpurpose>
|
||||
Send asynchronous query
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>bool <function>pg_send_query</function></funcdef>
|
||||
<paramdef>resource <parameter>connection</parameter></paramdef>
|
||||
<paramdef>string <parameter>qeury</parameter></paramdef>
|
||||
</funcprototype>
|
||||
<funcprototype>
|
||||
<funcdef>bool <function>pg_send_query</function></funcdef>
|
||||
<paramdef>string <parameter>qeury</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
&warn.undocumented.func;
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
</reference>
|
||||
|
||||
<!-- Keep this comment at the end of the file
|
||||
|
|
Loading…
Reference in a new issue