NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
DBIx::Class (Score:1)
where I don't know how to write the "mumble" part off the top of my head, but it's probably acc
Re: (Score:1)
It solves the problem by getting rid of the class tree altogether and using Perl structures.
Here's another example of the sort of stuff I'm doing.
# We need a certain type of person
my $query = MyApp::Entity::Person->Fetch;
$query->condition('OptimizedFor', '==', 'fun');
$query->condition(
MyApp::SQL::Collection->OR(
MyApp::SQL::Clause->new('Lame', 'is null'),
Re:DBIx::Class (Score:1)
But you get the point.
Reply to This
Parent