Help for this page

Select Code to Download


  1. or download this
    $sth->bind_param(1, $value, ... );
    $sth->bind_param( 2, $value, ... );
    
  2. or download this
    my $sql = "INSERT INTO sometable (x, y, z, blobby) VALUES (?, ?, ?, ?)
    +"
    
    ...
    $sth->bind_param( 4, $lob_value, { ora_type => ORA_BLOB });
    
    $sth->execute();