DBD/DBI datetime insert

DBD/DBI datetime insert

am 04.09.2006 02:23:07 von Hal Wigoda

anyone have the code that will insert the current time into a
datetime field in a table
while using perl DBI/DBD::mysql?

--
MySQL Perl Mailing List
For list archives: http://lists.mysql.com/perl
To unsubscribe: http://lists.mysql.com/perl?unsub=gcdmp-msql-mysql-modules@m .gmane.org

Re: DBD/DBI datetime insert

am 04.09.2006 15:15:42 von Kenny Scott

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/perl?unsub=gcdmp-msql-mysql-modules@m .gmane.org