in reply to Re: mod_perl @INC/use base trouble
in thread mod_perl @INC/use base trouble
package Doc::User; use base 'Doc::DBI'; __PACKAGE__->table('users'); __PACKAGE__->columns(All => qw/uid email employee/); __PACKAGE__->has_many(accessrights => 'Doc::AccessRight'); __PACKAGE__->autoupdate(1); 1;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: mod_perl @INC/use base trouble
by Gilimanjaro (Hermit) on Aug 13, 2004 at 11:31 UTC | |
by Jaap (Curate) on Aug 13, 2004 at 11:53 UTC | |
by Gilimanjaro (Hermit) on Aug 13, 2004 at 12:04 UTC |