ID: 8517
Updated by: lobbin
Old Summary: BLOB functions don't work with IB6
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Feedback
Bug Type: InterBase related
Operating System: Linux 2.2.17
PHP Version: 4.0.4
New Comment:
Can you reproduce this error on 4.1.1?
Previous Comments:
------------------------------------------------------------------------
[2001-01-02 12:20:23] [EMAIL PROTECTED]
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
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]