[snip]
I had a bit of BFOTO and tried simple inserts.

     mysql>  create table t (f timestamp);
     Query OK, 0 rows affected (0.00 sec)

     mysql> insert into t values ('2008-03-04 16:17:00');
     Query OK, 1 row affected (0.00 sec)

     mysql> select * from t;
     +---------------------+
     | f                   |
     +---------------------+
     | 2008-03-04 16:17:37 |
     +---------------------+
     1 row in set (0.00 sec)
[/snip]

The column type needs to be DATETIME. 

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to