Wed Oct 07 10:44:48 2009mark.young [...] agconnections.com - Ticket created
Subject:
Field Label Comparisons are Case-Sensitive
Date:
Wed, 7 Oct 2009 09:44:07 -0500
To:
<bug-ORM [...] rt.cpan.org>
From:
"Mark Young" <mark.young [...] agconnections.com>
-- SQL
create table EXAMPLE(FIELD int);
# Perl
my $e = Example->new( prop => { field => 42, }, );
Would result in error stating that table 'Example' (note, that is the
object/module name, not 'EXAMPLE') does not contain field 'field' because
the comparisons are case-sensitive.