Subject: | Preserve case for column accessor method names |
For some databases, it would be useful to have the column names match
the column accessor method name. The preserve_case option really helped
to preserve case for the actual column name but it did not for the
accessor method name.
Ideally, the user would be able to preserve a format for relationships,
monikers, and/or column accessors.
Example of current functionality:
"CamelCase",
{
accessor => "camel_case",
data_type => "varchar",
is_nullable => 1,
size => 128,
},
The preserve_case option was able to preserve the "CamelCase" column
name but the accessor method name became camel_case.