Query: fbsql_query
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
FBSQL_QUERY(3) 1 FBSQL_QUERY(3) fbsql_query - Send a FrontBase querySYNOPSISresource fbsql_query (string $query, [resource $link_identifier], [int $batch_size])DESCRIPTIONSends a $query to the currently active database on the server. If the query succeeds, you can call fbsql_num_rows(3) to find out how many rows were returned for a SELECT statement or fbsql_affected_rows(3) to find out how many rows were affected by a DELETE, INSERT, REPLACE, or UPDATE statement.PARAMETERSo $query - The SQL query to be executed. Note The query string shall always end with a semicolon. o $ link_identifier -A FrontBase link identifier returned by fbsql_connect(3) or fbsql_pconnect(3).If optional and not specified, the function will try to find an open link to the FrontBase server and if no such link is found it will try to create one as if fbsql_connect(3) was called with no arguments. o $batch_size -RETURN VALUESfbsql_query(3) returns TRUE (non-zero) or FALSE to indicate whether or not the query succeeded. A return value of TRUE means that the query was legal and could be executed by the server. It does not indicate anything about the number of rows affected or returned. It is perfectly possible for a query to succeed but affect no rows or return no rows. For SELECT statements, fbsql_query(3) returns a new result identifier that you can pass to fbsql_result(3). fbsql_query(3) will also fail and return FALSE if you don't have permission to access the table(s) referenced by the query.EXAMPLESThe following query is syntactically invalid, so fbsql_query(3) fails and returns FALSE: Example #1 fbsql_query(3) example <?php $result = fbsql_query("SELECT * WHERE 1=1") or die ("Invalid query"); ?> The following query is semantically invalid if my_col is not a column in the table my_tbl, so fbsql_query(3) fails and returns FALSE: Example #2 fbsql_query(3) example <?php $result = fbsql_query ("SELECT my_col FROM my_tbl;") or die ("Invalid query"); ?>SEE ALSOfbsql_affected_rows(3), fbsql_db_query(3), fbsql_free_result(3), fbsql_result(3), fbsql_select_db(3), fbsql_connect(3). PHP Documentation Group FBSQL_QUERY(3)
Related Man Pages |
---|
mysql_query(3) - php |
mysqli_affected_rows(3) - php |
mysql_unbuffered_query(3) - php |
maxdb_affected_rows(3) - php |
sqlsrv_rows_affected(3) - php |
Similar Topics in the Unix Linux Community |
---|
pass result from one query to another |
query about find and -exec |
Optimizing query |
PL/SQL heartbeat Query has errors |
How to print multiple rows from database query? |