Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re^2: Add a method to a ResultSet Class in DBIx::Class?

by jasonk (Parson)
on Jan 09, 2008 at 18:20 UTC ( [id://661443]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    # lib/MyDB.pm
    package MyDB;
    ...
    ));
    
    1;
    
  2. or download this
    # lib/MyDB/Result/Article.pm
    package MyDB::Result::Article;
    ...
    
    __PACKAGE__->table( 'articles' );
    __PACKAGE__->columns(qw( updated_time created_time ));
    
  3. or download this
    my $schema = MyDB->connect( @connection_info );
    my $article = $rs->schema( 'Article' )->new({});
    
  4. or download this
    # lib/MyDB/ResultSet/Article.pm
    package MyDB::ResultSet::Article;
    ...
    }
    
    1;
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://661443]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (7)
As of 2024-04-19 06:44 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found