clarify ibase_query documentation.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@64122 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
jim winstead 2001-12-07 01:03:33 +00:00
parent 0f2e3e4490
commit 5a437d80f0

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.34 $ -->
<!-- $Revision: 1.35 $ -->
<reference id="ref.ibase">
<title>InterBase functions</title>
<titleabbrev>InterBase</titleabbrev>
@ -245,21 +245,18 @@ magic_quotes_sybase = On
</funcprototype>
</funcsynopsis>
<simpara>
Performs a query on an InterBase database, returning a result
identifier for use with <function>ibase_fetch_row</function>,
<function>ibase_fetch_object</function>,
<function>ibase_free_result</function> and
<function>ibase_free_query</function>.
Performs a query on an InterBase database. If the query is not
successful, returns false. If it is successful and there are resulting
rows (such as with a SELECT query), returns a result identifier. If
the query was successful and there were no results, returns &true;.
Returns &false; if the query fails.
</simpara>
<note>
<para>
Although this function supports variable binding to parameter
placeholders, there is not very much meaning using this capability
with it. For real life use and an example, see
<function>ibase_prepare</function> and
<function>ibase_execute</function>.
</para>
</note>
<para>
See also <function>ibase_errmsg</function>,
<function>ibase_fetch_row</function>,
<function>ibase_fetch_object</function>, and
<function>ibase_free_result</function>.
</para>
</refsect1>
</refentry>