From db0202b8e39f84613aeebf6470bf248467eecacc Mon Sep 17 00:00:00 2001 From: Damien Seguy Date: Wed, 9 May 2001 18:12:22 +0000 Subject: [PATCH] Retitled examples added version availability git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@46963 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/fbsql.xml | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/functions/fbsql.xml b/functions/fbsql.xml index cdf3fec20f..a034d81dd2 100644 --- a/functions/fbsql.xml +++ b/functions/fbsql.xml @@ -23,7 +23,9 @@ Documentation for FrontBase can be found at &url.fbsql.docs;. - + + Frontbase support has been added to PHP 4.0.6. + @@ -177,7 +179,7 @@ - FrontBase close example + <function>fbsql_close</function> example <?php $link = fbsql_connect ("localhost", "_SYSTEM", "secret") @@ -245,7 +247,7 @@ fbsql_close. - FrontBase connect example + <function>fbsql_connect</function> example <?php @@ -288,7 +290,7 @@ identifier. - FrontBase create database example + <function>fbsql_create_db</function> example <?php $link = fbsql_pconnect ("localhost", "_SYSTEM", "secret") @@ -335,7 +337,7 @@ - FrontBase data seek example + <function>fbsql_data_seek</function> example <?php $link = fbsql_pconnect ("localhost", "_SYSTEM", "secret") @@ -593,7 +595,7 @@ select t1.f1 as foo t2.f1 as bar from t1, t2 fbsql_fetch_row and fbsql_fetch_assoc. - <function>fbsql_fetch_array</function> + <function>fbsql_fetch_array</function> example <?php fbsql_connect ($host, $user, $password); @@ -654,7 +656,7 @@ fbsql_free_result ($result); fbsql_fetch_row and fbsql_fetch_array. - <function>fbsql_fetch_assoc</function> + <function>fbsql_fetch_assoc</function> example <?php fbsql_connect ($host, $user, $password); @@ -730,7 +732,7 @@ fbsql_free_result ($result); - <function>fbsql_fetch_field</function> + <function>fbsql_fetch_field</function> example <?php fbsql_connect ($host, $user, $password) @@ -1082,7 +1084,7 @@ password detailed in the FrontBase documentation. - fbsql field types + <function>fbsql_field_type</function> example <?php @@ -1522,7 +1524,7 @@ echo "$num_rows Rows\n"; The following query is syntactically invalid, so fbsql_query fails and returns FALSE: - <function>fbsql_query</function> + <function>fbsql_query</function> example <?php $result = fbsql_query ("SELECT * WHERE 1=1") @@ -1537,7 +1539,7 @@ $result = fbsql_query ("SELECT * WHERE 1=1") my_tbl, so fbsql_query fails and returns FALSE: - <function>fbsql_query</function> + <function>fbsql_query</function> example <?php $result = fbsql_query ("SELECT my_col FROM my_tbl") @@ -1690,7 +1692,7 @@ $result = fbsql_query ("SELECT my_col FROM my_tbl") fbsql_num_rows function may be used to determine the number of tables in the result pointer. - <function>fbsql_tablename</function> Example + <function>fbsql_tablename</function> example <?php fbsql_connect ("localhost:3306");