Help for this page

Select Code to Download


  1. or download this
    package MyApp::DB;
    
    use Rose::DB;
    ...
      password => 'mysecret');
    
    1;
    
  2. or download this
    package MyApp::DB::Object;
    
    use Rose::DB::Object;
    ...
    sub init_db { MyApp::DB->new }
    
    1;
    
  3. or download this
    package MyApp::DB::Gallery;
    
    use MyApp::DB::Object;
    ...
    }
    
    1;
    
  4. or download this
    package MyApp::Table;
    ...
    sub add_leg
    ...
      $leg->save;
      push(@{$self->{'legs'}}, $leg);
    }