ibase_execute

(PHP 5, PHP 7)

ibase_executeExecute a previously prepared query

说明

ibase_execute ( resource $query [, mixed $... ] ) : resource

Execute a query prepared by ibase_prepare().

This is a lot more effective than using ibase_query() if you are repeating a same kind of query several times with only some parameters changing.

参数

query

An InterBase query prepared by ibase_prepare().

...

返回值

If the query raises an error, returns FALSE. If it is successful and there is a (possibly empty) result set (such as with a SELECT query), returns a result identifier. If the query was successful and there were no results, returns TRUE.

Note:

This function returns the number of rows affected by the query (if > 0 and applicable to the statement type). A query that succeeded, but did not affect any rows (e.g. an UPDATE of a non-existent record) will return TRUE.

范例

Example #1 ibase_execute() example

<?php

$dbh 
ibase_connect($host$username$password);

$updates = array(
    
=> 'Eric',
    
=> 'Filip',
    
=> 'Larry'
);

$query ibase_prepare($dbh"UPDATE FOO SET BAR = ? WHERE BAZ = ?");

foreach (
$updates as $baz => $bar) {
    
ibase_execute($query$bar$baz);
}

?>

参见

相关文章
php firebird/interbase 函数 return the number of rows that were affected by the previous queryphp firebird/interbase 函数 initiates a backup task in the service manager and returns immediatelyphp firebird/interbase 函数 add data into a newly created blobphp firebird/interbase 函数 cancel creating blobphp firebird/interbase 函数 drops a databasephp firebird/interbase 函数 return an error codephp firebird/interbase 函数 return error messagesphp firebird/interbase 函数 execute a previously prepared queryphp firebird/interbase 函数 fetch a result row from a query as an associative arrayphp firebird/interbase 函数 free memory allocated by a prepared queryphp firebird/interbase 函数 execute a maintenance command on the database serverphp firebird/interbase 函数 return the number of parameters in a prepared queryphp firebird/interbase 函数 return information about a parameter in a prepared queryphp firebird/interbase 函数 open a persistent connection to an interbase databasephp firebird/interbase 函数 prepare a query for later binding of parameter placeholders and executionphp firebird/interbase 函数 execute a query on an interbase databasephp informix 函数 execute a previously prepared sql statementphp ingres 函数 execute a prepared 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 graphphp swish 函数 execute a query and return results object
关注编程学问公众号