ID:               11924
 Updated by:       [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
-Status:           Open
+Status:           Feedback
 Bug Type:         InterBase related
 Operating System: Windows 2000
 PHP Version:      4.0.6
 New Comment:

Who would you want to do something like this?


Previous Comments:
------------------------------------------------------------------------

[2001-07-06 06:03:08] [EMAIL PROTECTED]

It seems to be a problem when ibase_execute called indirectly, through
call_user_func_array().

Look at the following piece of code:

$args = array('some text','amother text');
$query = ibase_prepare($conn,"insert into MY_TABLE (INT_FIELD,
STR_FIELD) values (?,?)");
array_unshift($args,$query);
print_r($args);
$rs = call_user_func_array('ibase_execute',$args);
print_r($args);
ibase_free_query($query);

MY_TABLE table contains two columns:
INT_FIELD INTEGER,
STR_FIELD VARCHAR(50)

 Imagine, that we're make an error, and pass string values for both
fields. 
No error will be given, but at second print_r() first item inro $args
array 
will be equal to 0 instead of 'some text'.

 As I can understand, all query parameters are replaced by values,
actually 
stored into database (like they are passed by reference, 
but allow_call_time_pass_reference options is turned off). 
 If it is not a bug, but a "feature", it must be documented, to avoid
future misunderstandings.


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=11924&edit=1

Reply via email to