in reply to last_insert_id issue

OT

This comment is unrelated to your question but I'd like to point out that unless you really need to use those individual vars used in creating your $temp_date later in the script, you could simplify that by using the strftime function from the POSIX module.

my $ms = (gettimeofday())[1]; $ms = ($ms-($ms%1000))/1000; my $temp_date = strftime("%Y-%m-%d %H:%M:%S.$ms", localtime);

Replies are listed 'Best First'.
Re^2: last_insert_id issue
by sowais (Sexton) on Aug 27, 2014 at 17:36 UTC
    Thanks a bunch! I am still learning Perl and not aware of many useful modules like POSIX. That shortens my code tremendously! Thanks again!