3

我在这里可能是错的,但看起来这里有相互冲突的标准。

MySQL 将“0000-00-00 00:00:00”的存储日期时间视为等同于 NULL。(更新 - 似乎只有当日期时间被定义为 NOT NULL 时)

但是 Rose::DB::Object 对 MySQL DATETIME 字段使用 DateTime,并且尝试从“0000-00-00”设置空 DATETIME 会在 DateTime 模块中引发异常。即,我无法创建具有年 0、月 0、日 0 的 DateTime 对象,因为这会在 DateTime 模块中引发异常。

我签入了 Rose::DB::Object::Metadata::Column::Datetime,并且在创建条目或检索时看不到显式处理 NULL DateTime 的方法。

我错过了什么吗?

即,即使 DateTime(Perl 模块)不能,Rose::DB::Object 也可以处理 NULL 日期时间(MySQL)字段。

示例代码:

#!/usr/bin/perl
use strict;
use warnings;
use lib 'lib';
use RoseDB::dt_test;

my $dt_entry =  RoseDB::dt_test->new();
$dt_entry->date_time_field('0000-00-00');
$dt_entry->save;



1;

__END__
# definition of table as stored in DB

mysql> show create table dt_test \G
*************************** 1. row ***************************
       Table: dt_test
Create Table: CREATE TABLE `dt_test` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `date_time_field` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1
1 row in set (0.00 sec)

RoseDB::dt_test 模块为:

package RoseDB::dt_test;
use strict;
use warnings;

# this module builds up our DB connection and initializes the connection through:
# __PACKAGE__->register_db
use RoseDB;

use base qw(Rose::DB::Object);

__PACKAGE__->meta->setup (
    table => 'dt_test',

    columns =>
    [
      id              => { type => 'int', primary_key => 1 },
      date_time_field => { type => 'datetime' },
    ],
);

sub init_db { RoseDB->get_dbh }

1;

当我运行它时,我收到错误“Invalid datetime: '0000-00-00' at tmp.pl line 8”

当我将日期更改为“2010-01-01”时,它按预期工作:

mysql> select * from dt_test\G
*************************** 1. row ***************************
             id: 1
date_time_field: 2010-01-01 00:00:00

我终于设法重新创建了 NULL MySQL 查询示例!

mysql> create table dt_test(dt_test_field datetime not null);
Query OK, 0 rows affected (0.05 sec)

mysql> insert into dt_test values(null);
ERROR 1048 (23000): Column 'dt_test_field' cannot be null
mysql> insert into dt_test values('0000-00-00');
Query OK, 1 row affected (0.00 sec)

mysql> select * from dt_test;
+---------------------+
| dt_test_field       |
+---------------------+
| 0000-00-00 00:00:00 |
+---------------------+
1 row in set (0.00 sec)

mysql> select * from dt_test where dt_test_field is null;
+---------------------+
| dt_test_field       |
+---------------------+
| 0000-00-00 00:00:00 |
+---------------------+
1 row in set (0.00 sec)

看起来像用“NOT NULL”定义日期时间然后尝试使用 MySQL“fake null”的表定义是问题所在。我现在玩这个太累了,但我会在早上更改表结构时看看会发生什么。

4

2 回答 2

4

您应该能够将datetime列设置为文字所需的0000-00-00 00:00:00值并将其保存到数据库中:

$o->mycolumn('0000-00-00 00:00:00');
$o->save;

这样的“全零”值不会被 转换为DateTime对象Rose::DB::Object,而是会保留为文字字符串。DateTimeMySQL 的0000-00-00 00:00:00日期时间字符串没有等效的语义对象。

注意:0000-00-00是有效值date,但datetime(或timestamp)值必须包含时间:0000-00-00 00:00:00

要将列设置为 null,undef请作为列值传递:

$o->mycolumn(undef);

当然,如果数据库中的列定义包含一个NOT NULL约束,save()则不会起作用。

于 2010-01-27T04:20:47.583 回答
1

MySQL 允许日期类型不完整(缺少年、月或日)。'0000-00-00' 是一个有效的、非 NULL MySQL 日期。为什么你认为它匹配 IS NULL?

$ echo "select date('0000-00-00') is null" | mysql
date('0000-00-00') is null
0

为了比较:

$ echo "select date('0000-00-32') is null" | mysql
date('0000-00-32') is null
1
于 2010-01-27T03:34:20.527 回答