Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: Dates and SQL

by htoug (Deacon)
on Sep 27, 2001 at 11:10 UTC ( [id://115014]=note: print w/replies, xml ) Need Help??


in reply to Dates and SQL

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!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://115014]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (6)
As of 2024-04-24 03:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found