Help for this page

Select Code to Download


  1. or download this
    my $sql = "Insert into tableone values('1', '2', '3')";
    my $nextsql = "Insert into tabletwo values('4', '5', '6')";
    ...
    $loadHandle->execute or
      die "Could not execute SQL statement ... maybe invalid?";
    ....
    
  2. or download this
    my $sql = <<EO_SQL;
     insert into tableone values('1', '2', '3')
    ...
    $loadHandle->execute or
      die "Could not execute SQL statement $sql ... maybe invalid?";
    ....