dbi-note to self

fluff on 2008-06-01T23:05:11

I always forget this so:

Last insert id: $Dbh->{'mysql_insertid'}


note taking

petdance on 2008-06-02T02:48:23

I finally set up a wiki for stuff like this.

http://xoa.petdance.com/

And now I've got a "How to" section http://xoa.petdance.com/Category:How_to

And it has stuff like How to: Flush DNS cache on Mac OS X, which is my #1 always forgotten bit of knowledge.

last_insert_id

stu42j on 2008-06-02T21:48:04

If you use DBI 1.38 or later you might want to use the slightly less database specific:

$dbh->last_insert_id();
http://search.cpan.org/perldoc?DBI#last_insert_id