ocisavelobfile

(PHP 4 , PHP 5)

ocisavelobfile -- Saves a large object file

Description

bool ocisavelobfile ( void )

Note: This function was renamed to oci_lob_import() after PHP >= 5.0.0. For downward compatibility ocisavelobfile() can also be used. This is deprecated, however.

BB">$conn, "create table emp2 as select * from emp");
    
OCIExecute($stmt);
    echo
OCIRowCount($stmt) . " rows inserted.<br />";
    
OCIFreeStatement($stmt);
    
$stmt = OCIParse($conn, "delete from emp2");
    
OCIExecute($stmt);
    echo
OCIRowCount($stmt) . " rows deleted.<br />";
    
OCICommit($conn);
    
OCIFreeStatement($stmt);
    
$stmt = OCIParse($conn, "drop table emp2");
    
OCIExecute($stmt);
    
OCIFreeStatement($stmt);
    
OCILogOff($conn);
    echo
"</pre>";
?>