Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

A Growing Dislike for SQL-OOP Mappers

by jk2addict (Chaplain)
on Aug 22, 2005 at 14:02 UTC ( [id://485692]=perlmeditation: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
        package MyApp::DBI;
        use base 'Class::DBI';
    ...
           return;
        };
        1;
    
  2. or download this
        package MyApp::DBI;
        use base 'DBIx::Class';
    ...
           return;
        };
        1;
    
  3. or download this
        package MyApp::DBI;
        use base 'Class::DBI';
    ...
           return;
        };
        1;
    
  4. or download this
        package MyApp::DBI;
        use base 'Class::DBI';
    ...
        __PACKAGE->has_many(tablelegs => 'MyApp::TableLegs');
    
        1;
    
  5. or download this
       package MyApp::Gallery;
       use MyApp::DBI::Gallery;
    ...
              $self->{gallery}->$name(shift);
           };
       };
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlmeditation [id://485692]
Approved by Roger
Front-paged by Tanalis
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (2)
As of 2024-04-25 22:44 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found