Help for this page

Select Code to Download


  1. or download this
    my $tmp_query="insert into <TableName> values('','');";
    $sth = $dbh->prepare($tmp_query);
    $sth->execute();
    $sth->finish();
    
  2. or download this
    my $out = $dbh->last_insert_id(undef, undef, "<Table Name>", undef);