Help for this page

Select Code to Download


  1. or download this
     my $query;
            $query=qq(insert into MasterEpisode set \
    ...
            my $episodeid=$dbh->last_insert_id(undef,undef,"MasterEpisode"
    +,undef);
            print p("Episode id is $episodeid.");
    
  2. or download this
    
            # $episodeid=$dbh->last_insert_id(undef,undef,'MasterEpisode',
    +undef);
    ...
            @episodeid=$sth->fetchrow_array();
            $episodeid=$episodeid[0];
            print p("Episode id is $episodeid.");