Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: DBIC & deploy

by castaway (Parson)
on Mar 31, 2009 at 06:45 UTC ( [id://754340]=note: print w/replies, xml ) Need Help??


in reply to DBIC & deploy

At which level do you want to find out? DBIx::Class::Schema::Versioned uses this construct:
sub _source_exists { my ($self, $rs) = @_; my $c = eval { $rs->search({ 1, 0 })->count; }; return 0 if $@ || !defined $c; return 1; }
This is called on a $schema object, and passed a plain $resultset object.

Or you could just use Versioned.

C.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://754340]
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-20 04:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found