$PSize = filesize($newimage);
$ocipicture = fread(fopen($newimage, "r"), $PSize);
$sql = "INSERT INTO testimage (ID, IMAGE) VALUES (TESTID.NEXTVAL, '$ocipicture')";
$ins_image = OCIParse($conn, $sql);
$abc = OCIExecute($ins_image);
OCIFreeStatement($ins_image);
I can't execute the sql statment, do I need to add anything?