Help for this page

Select Code to Download


  1. or download this
    Column1  Column2
    12       13
    14       15
    16       18
    133      122
    
  2. or download this
    Column
    13
    15
    18
    122
    
  3. or download this
    my $sth = $dbh->prepare("INSERT INTO Table1 values (?,?)");
    my $newtable = $dbh->prepare("CREATE Table Table2 Column VARCHAR(12)")
    +;
    ...
    $newtable->finish();
    $dbh->disconnect or warn $dbh->errstr;