My database system (Ingres) allows me to use the constant
'NOW' as the current date. You query would then become:
$sth = $dbh->prepare("UPDATE Schedules SET Date = 'NOW' WHERE ID = $id
+") or die "Couldn't prepare statement: $DBI::errstr; stopped";
Check the database documentation and see if a similar method exists.
If not then you can fudge the date using localtime in array mode and a bit of sprintf:
my @cur_time = localtime();
my $now = sprintf("%4d-%02d-%02d", $cur_time[5]+1900, $cur_time[4]+1,
+$cur_time[3]);
for an ISO standard date.
You are using $dbh->{RaiseError}=1, aren't you? It does make error-checking so much easier - you don't need all those or die "Error...." check everywhere. And you don't forget the one where the code fails in production!
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.