Help for this page

Select Code to Download


  1. or download this
    $sth2 = $dbh->prepare("update $what$ever");
    
  2. or download this
    my $sqltext = "update $what$ever";
    print qq(SQL query is: "$sqltext");
    $sth2 = $dbh->prepare($sqltext);