Help for this page

Select Code to Download


  1. or download this
    $dbh->do("insert ... ");
    $sth = $dbh->prepare('select @@identity');
    $sth->execute();
    my $data = $sth->fetch;...
    
  2. or download this
    $dbh->do("exec some_proc_with_an_insert 1,2,3");
    $sth = $dbh->prepare('select @@identity');
    $sth->execute();
    my $data = $sth->fetch;