ID:               8517
 Updated by:       [EMAIL PROTECTED]
 Reported By:      hp at oeri dot ch
-Status:           No Feedback
+Status:           Bogus
 Bug Type:         InterBase related
 Operating System: Linux 2.2.17
 PHP Version:      4.0.4
 New Comment:

Apart from the segfault on strlen, which is non-Interbase related, this
is behaviour as expected. You can only use binding with blob ids,
because the contents of the string have no meaning to the engine, only
to the PHP layer. Furthermore, it's a binary string so it looks like
garbage.


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

[2002-02-02 06:45:33] [EMAIL PROTECTED]

No feedback was provided for this bug, so it is being suspended.
If you are able to provide the information that was requested,
please do so and change the status of the bug back to "Open".

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

[2002-01-11 16:56:59] [EMAIL PROTECTED]

Can you reproduce this error on 4.1.1?

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

[2001-01-02 12:20:23] hp at oeri dot ch

In the following snippet, $bstr is set to some binary data, not a blob
id string:
- bstr is not accepted by ibase_query
- on echoing bstr, the closing brace is NEVER printed
- strlen( bstr ) segfaults php...

--- SNIPPET START ---
<?
    $dbh = ibase_connect( "localhost:/path/to/db/db.gdb", "user",
"pass" );
 
    $bid = ibase_blob_create( $dbh );
    ibase_blob_add( $bid, "alpha" );
    $bstr = ibase_blob_close( $bid );
 
    $sql = "INSERT INTO testtable values(1,$bstr)";
 
    ibase_query( $dbh, $sql );
    ibase_close( $dbh );
?> 
--- SNIPPET END ---

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


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

Reply via email to