Help for this page

Select Code to Download


  1. or download this
    $cmd=$dbh->prepare(....);
    $cmd->execute();
    $cmd->finish;
    
  2. or download this
    $cmd=$dbh->prepare("insert into filestable (filescolumn) values(?)");
    $cmd->bind_param(1,$binfilecontents, DBI:SQLVARBINARY);
    $cmd->execute;
    $cmd->finish;