Re: DBD/DBI datetime insert
Kenny Scott <[email protected]>
| Newsgroups | gmane.comp.db.mysql.perl |
|---|---|
| Message-ID | <[email protected]> |
Hal Wigoda wrote: > anyone have the code that will insert the current time into a > datetime field in a table while using perl DBI/DBD::mysql? Hi, Hopefully this will give you enough pointers. -- Kenny #!/usr/bin/perl -w use strict; use DBI; my $dbh = DBI->connect( "DBI:mysql:test", "root", ""); my $sth = $dbh->prepare( "INSERT INTO a VALUES ( NOW() )" ); $sth->execute(); $sth->finish(); $sth = $dbh->prepare( "SELECT a FROM a" ); $sth->execute(); my ( $time ) = $sth->fetchrow_array(); $sth->finish(); print "The time was [$time]\n"; $dbh->disconnect(); __END__ CREATE TABLE a ( a datetime NOT NULL default '0000-00-00 00:00:00' ) TYPE=MyISAM; -- MySQL Perl Mailing List For list archives: http://lists.mysql.com/perl To unsubscribe: http://lists.mysql.com/[email protected]