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 函数 executes a prepared sql statementphp ibm db2 函数 returns the number of rows affected by an sql statementphp ibm db2 函数 prepares an sql statement to be executedphp firebird/interbase 函数 execute a previously prepared queryphp informix 函数 execute a previously prepared sql statementphp informix 函数 prepare an sql statement for executionphp maxdb 函数 prepare an sql statement for executionphp maxdb 函数 fetch results from a prepared statement into the bound variablesphp maxdb 函数 prepare an sql statement for executionphp maxdb 函数 resets a prepared statementphp mysql xdevapi 函数 bind prepared statement variables as parametersphp 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 函数 submits a request to create a prepared statement with the given parameters and waits for completionphp postgresql 函数 sends a request to execute a prepared statement with given parameters without waiting for the result s php sqlsrv 函数 retrieves metadata for the fields of a statement prepared by sqlsrv prepare or sqlsrv queryphp 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
关注编程学问公众号