1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
package # hide from PAUSE
DBIx::Class::CDBICompat::Retrieve;
use strict;
use warnings FATAL => 'all';
sub retrieve {
my $self = shift;
die "No args to retrieve" unless @_ > 0;
my @cols = $self->primary_columns;
my $query;
if (ref $_[0] eq 'HASH') {
$query = { %{$_[0]} };
}
elsif (@_ == @cols) {
$query = {};
@{$query}{@cols} = @_;
}
else {
$query = {@_};
}
$query = $self->_build_query($query);
$self->find($query);
}
sub find_or_create {
my $self = shift;
my $query = ref $_[0] eq 'HASH' ? shift : {@_};
$query = $self->_build_query($query);
$self->next::method($query);
}
# _build_query
#
# Build a query hash. Defaults to a no-op; ColumnCase overrides.
sub _build_query {
my ($self, $query) = @_;
return $query;
}
sub retrieve_from_sql {
my ($class, $cond, @rest) = @_;
$cond =~ s/^\s*WHERE//i;
$class->search_literal($cond, @rest);
}
sub retrieve_all { shift->search }
sub count_all { shift->count }
# Contributed by Numa. No test for this though.
1;
|