ID: 7306
Updated by: sniper
Reported By: [EMAIL PROTECTED]
Old-Status: Duplicate
Status: Open
Bug Type: OCI8 related
Operating system: 
PHP Version: 4.0 Latest CVS (18/10/2000)
Assigned To: 
Comments:

Why was this duplicate?


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

[2000-10-18 05:02:37] [EMAIL PROTECTED]
<?php
        $db = @ocilogon("scott", "tiger", "ZTST");
        $statement = ociparse($db, "CREATE TABLE foo (blob_field BLOB)");
        ociexecute($statement);

        $query = "INSERT INTO foo (blob_field) " .
                         "VALUES (EMPTY_BLOB()) " .
                         "RETURNING blob_field into :blob";
        $statement = ociparse($db, $query);
        ocibindbyname($statement, ':blob', &$undefined, -1, OCI_B_BLOB);
        $result = ociexecute($statement);
?>

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



ATTENTION! Do NOT reply to this email!
To reply, use the web interface found at http://bugs.php.net/?id=7306&edit=2


-- 
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]

Reply via email to