in reply to Clarification on Class::DBI wackiness
Try and use set_up_table instead of table and columns to configure your CDBI class to see if that makes a difference.
__PACKAGE__->set_up_table('users');
set_up_table will read all the table information (like column names and primary keys and more) directly from the DB and setup your CDBI class for you.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Clarification on Class::DBI wackiness
by spork (Monk) on Aug 03, 2005 at 17:37 UTC | |
by cees (Curate) on Aug 03, 2005 at 18:19 UTC |