From 5a437d80f026f21643fb04914c0abeded21a1f3f Mon Sep 17 00:00:00 2001 From: jim winstead Date: Fri, 7 Dec 2001 01:03:33 +0000 Subject: [PATCH] clarify ibase_query documentation. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@64122 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/ibase.xml | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/functions/ibase.xml b/functions/ibase.xml index 6402eb49f1..769a39c2d3 100644 --- a/functions/ibase.xml +++ b/functions/ibase.xml @@ -1,5 +1,5 @@ - + InterBase functions InterBase @@ -245,21 +245,18 @@ magic_quotes_sybase = On - Performs a query on an InterBase database, returning a result - identifier for use with ibase_fetch_row, - ibase_fetch_object, - ibase_free_result and - ibase_free_query. + 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. - - - 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 - ibase_prepare and - ibase_execute. - - + + See also ibase_errmsg, + ibase_fetch_row, + ibase_fetch_object, and + ibase_free_result. +