Help for this page

Select Code to Download


  1. or download this
    $rv  = $dbh->do($statement, \%attr, @bind_values);
    
  2. or download this
    my $statement   = q{INSERT INTO....};
    my %attr        = ();
    my @bind_values = ( 'NULL', $first, $last );
    
    my $rv = $dbh->do( $statement, \%attr, @bind_values );