Help for this page

Select Code to Download


  1. or download this
    my $sth = $dbh->prepare(<<'');
    INSERT INTO sometable (x, y, z, blobby) VALUES (?, ?, ?, ?)
    
    $sth->execute('x', 'y', 'z', $blobdata);
    
  2. or download this
    $sth->bind_param($field_num, $lob_value, { ora_type => ORA_BLOB });