ifx_do

(PHP 4, PHP 5 < 5.2.1)

ifx_doExecute a previously prepared SQL-statement

说明

ifx_do ( resource $result_id ) : bool

Executes a previously prepared query or opens a cursor for it.

Does NOT free result_id on error.

Also sets the real number of ifx_affected_rows() for non-select statements for retrieval by ifx_affected_rows().

参数

result_id

result_id is a valid resultid returned by ifx_query() or ifx_prepare() (select type queries only!).

返回值

成功时返回 TRUE, 或者在失败时返回 FALSE

参见

Example #1 ifx_do() Example

<?php
$conn 
fx_connect"db""user""password" );
$result ifx_prepare("SELECT customer_num, company FROM customer"$conn);
ifx_do($result);
?>

参见

相关文章
php cubrid 函数 execute a prepared sql statementphp cubrid 函数 bind a lob object or a string as a lob object to a prepared statement as parametersphp ibm db2 函数 binds a php variable to an sql statement parameterphp ibm db2 函数 executes a prepared sql statementphp ibm db2 函数 returns the number of rows affected by an sql statementphp ibm db2 函数 returns a string containing the last sql statement error messagephp dbx 函数 escape a string so it can safely be used in an sql statementphp firebird/interbase 函数 execute a previously prepared queryphp informix 函数 execute a previously prepared sql statementphp informix 函数 prepare an sql statement for executionphp maxdb 函数 fetch results from a prepared statement into the bound variablesphp odbc 函数 prepare and execute an sql statementphp odbc 函数 execute a prepared statementphp postgresql 函数 sends a request to execute a prepared statement with given parameters and waits for the resultphp postgresql 函数 sends a request to execute a prepared statement with given parameters without waiting for the result s php postgresql 函数 sends a request to create a prepared statement with the given parameters without waiting for completionphp sqlite 函数 returns the number of rows that were changed by the most recent sql statementphp sqlsrv 函数 retrieves metadata for the fields of a statement prepared by sqlsrv prepare or sqlsrv queryphp mysql xdevapi session execute an sql statementphp sdo das relational 函数 executes an sql query passed as a prepared statement with a list of values to substitute for placeholders and return the results as a normalised data graph
关注编程学问公众号