From e2897ed00e108c7fc0a1f852f6812ee62f4bf23d Mon Sep 17 00:00:00 2001 From: Ron Chmara Date: Thu, 2 Nov 2000 07:36:14 +0000 Subject: [PATCH] adding more functions... blob functions still need to be added. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@35035 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/ibase.xml | 119 +++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 118 insertions(+), 1 deletion(-) diff --git a/functions/ibase.xml b/functions/ibase.xml index d3f55fd166..3b4b5623ef 100644 --- a/functions/ibase.xml +++ b/functions/ibase.xml @@ -318,7 +318,31 @@ magic_quotes_sybase = On - + + + + ibase_field_info + + Get information about a field + + + + Description + + + array ibase_field_info + int result + int field number + + + + Returns an array with information about a field after a select + query has been run. The array is in the form of name, alias, + relation, length, type. + + + + ibase_free_result @@ -411,6 +435,78 @@ magic_quotes_sybase = On + + + ibase_trans + Begin a transaction + + + Description + + + int ibase_trans + int + trans_args + + int + link_identifier + + + + + Begins a transaction. + + + + + + + ibase_commit + Commit a transaction + + + Description + + + int ibase_commit + int + link_identifier + + int trans_number + + + + + Commits transaction trans_number which was + created with ibase_trans. + + + + + + + ibase_rollback + Rolls back a transaction + + + Description + + + int ibase_rollback + int + link_identifier + + int trans_number + + + + + Rolls back transaction trans_number which was + created with ibase_trans. + + + + ibase_free_query @@ -543,6 +639,27 @@ magic_quotes_sybase = On + + + ibase_errmsg + + Returns error messages + + + + Description + + + string ibase_errmsg + void + + + + Returns a string containing an error message. + + + +