in reply to •Re: which database is best for perl ?
in thread which database is best for perl ?
In Postgres, I have to do something like this (b/c I don't know any better {yet}):$sth_insert->execute( $chain, 'chain' ); push @relationship_ids, $dbh->{'mysql_insertid'};
Thanks!$sth_insert->execute( $chain, 'chain' ); push @relationship_ids, ( $dbh->selectrow_array( 'SELECT last_value FR +OM entities_id_seq' ) );
Jason
|
|---|