DBIx::Class
手柄布爾值:
負荷此組件和聲明爲博列齊墩果值。
package Table;
__PACKAGE__->load_components(qw/InflateColumn::Boolean Core/);
__PACKAGE__->table('table');
__PACKAGE__->true_is('Y');
__PACKAGE__->add_columns(
foo => {
data_type => 'varchar',
is_boolean => 1,
},
bar => {
data_type => 'varchar',
is_boolean => 1,
true_is => qr/^(?:yes|ja|oui|si)$/i,
},
baz => {
data_type => 'int',
is_boolean => 1,
false_is => ['0', '-1'],
},
);
然後你就可以把指定列的布爾:
print 'table.foo is ', $table->foo ? 'true' : 'false', "\n";
print 'table.bar is ', $table->bar ? 'true' : 'false', "\n";
布爾對象仍然stringifies實際字段值:
print $table->foo; # prints "Y" if it is true
UPD如何選擇行其字段爲真
因爲DBIx::Class
使用SQL::Abstract
搜索與TRUE
值應該參考bool
元運算符字段:
my %where = (
-bool => 'is_user',
-not_bool => 'is_enabled',
);
會給你:
WHERE is_user AND NOT is_enabled
值得注意的是,DBIx :: Class將undef視爲NULL。 – Blaskovicz