Re: [RDBO] Using make_modules, inheritance, & relationships

2007-02-09 Thread Bryan Opfer
I just realized I am doing things backwards. Please disregard my problem. -Bryan Bryan Opfer wrote: > I am trying to set up a system where I can use use > Rose::DB::Object::Loader to auto make my modules any time I make a > schema change. Then I can have manually created classes tha

Re: [RDBO] Using make_modules, inheritance, & relationships

2007-02-09 Thread Bryan Opfer
Opps, I had a typo in the base for My::Foo. It would look like this: package My::Foo; use strict; use base qw(My::DB::Foo); # class and instance methods here... 1; Bryan Opfer wrote: > I am trying to set up a system where I can use use > Rose::DB::Object::Loader to auto make my m

[RDBO] Using make_modules, inheritance, & relationships

2007-02-09 Thread Bryan Opfer
I am trying to set up a system where I can use use Rose::DB::Object::Loader to auto make my modules any time I make a schema change. Then I can have manually created classes that use the auto-generated classes as their base. But, I am running into a problem with the relationships. Here is a