| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Class::DBI::Query::Base; |
|
2
|
|
|
|
|
|
|
|
|
3
|
24
|
|
|
24
|
|
137
|
use strict; |
|
|
24
|
|
|
|
|
47
|
|
|
|
24
|
|
|
|
|
1271
|
|
|
4
|
|
|
|
|
|
|
|
|
5
|
24
|
|
|
24
|
|
125
|
use base 'Class::Accessor'; |
|
|
24
|
|
|
|
|
52
|
|
|
|
24
|
|
|
|
|
2048
|
|
|
6
|
24
|
|
|
24
|
|
152
|
use Storable 'dclone'; |
|
|
24
|
|
|
|
|
48
|
|
|
|
24
|
|
|
|
|
9726
|
|
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
sub new { |
|
9
|
0
|
|
|
0
|
|
|
my ($class, $fields) = @_; |
|
10
|
0
|
|
|
|
|
|
my $self = $class->SUPER::new(); |
|
11
|
0
|
0
|
|
|
|
|
foreach my $key (keys %{ $fields || {} }) { |
|
|
0
|
|
|
|
|
|
|
|
12
|
0
|
|
|
|
|
|
$self->set($key => $fields->{$key}); |
|
13
|
|
|
|
|
|
|
} |
|
14
|
0
|
|
|
|
|
|
$self; |
|
15
|
|
|
|
|
|
|
} |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
sub get { |
|
18
|
0
|
|
|
0
|
|
|
my ($self, $key) = @_; |
|
19
|
0
|
0
|
|
|
|
|
my @vals = @{ $self->{$key} || [] }; |
|
|
0
|
|
|
|
|
|
|
|
20
|
0
|
0
|
|
|
|
|
return wantarray ? @vals : $vals[0]; |
|
21
|
|
|
|
|
|
|
} |
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
sub set { |
|
24
|
0
|
|
|
0
|
|
|
my ($self, $key, @args) = @_; |
|
25
|
0
|
0
|
|
|
|
|
@args = map { ref $_ eq "ARRAY" ? @$_ : $_ } @args; |
|
|
0
|
|
|
|
|
|
|
|
26
|
0
|
|
|
|
|
|
$self->{$key} = [@args]; |
|
27
|
|
|
|
|
|
|
} |
|
28
|
|
|
|
|
|
|
|
|
29
|
0
|
|
|
0
|
|
|
sub clone { dclone shift } |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
package Class::DBI::Query; |
|
32
|
|
|
|
|
|
|
|
|
33
|
24
|
|
|
24
|
|
151
|
use base 'Class::DBI::Query::Base'; |
|
|
24
|
|
|
|
|
43
|
|
|
|
24
|
|
|
|
|
42910
|
|
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
__PACKAGE__->mk_accessors( |
|
36
|
|
|
|
|
|
|
qw/ |
|
37
|
|
|
|
|
|
|
owner essential sqlname where_clause restrictions order_by kings |
|
38
|
|
|
|
|
|
|
/ |
|
39
|
|
|
|
|
|
|
); |
|
40
|
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head1 NAME |
|
42
|
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
Class::DBI::Query - Deprecated SQL manager for Class::DBI |
|
44
|
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head1 SYNOPSIS |
|
46
|
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
my $sth = Class::DBI::Query |
|
48
|
|
|
|
|
|
|
->new({ |
|
49
|
|
|
|
|
|
|
owner => $class, |
|
50
|
|
|
|
|
|
|
sqlname => $type, |
|
51
|
|
|
|
|
|
|
essential => \@columns, |
|
52
|
|
|
|
|
|
|
where_columns => \@where_cols, |
|
53
|
|
|
|
|
|
|
}) |
|
54
|
|
|
|
|
|
|
->run($val); |
|
55
|
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head1 DESCRIPTION |
|
58
|
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
This abstracts away many of the details of the Class::DBI underlying SQL |
|
60
|
|
|
|
|
|
|
mechanism. For the most part you probably don't want to be interfacing |
|
61
|
|
|
|
|
|
|
directly with this. |
|
62
|
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
The underlying mechanisms are not yet stable, and are subject to change |
|
64
|
|
|
|
|
|
|
at any time. |
|
65
|
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=cut |
|
67
|
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=head1 OPTIONS |
|
69
|
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
A Query can have many options set before executing. Most can either be |
|
71
|
|
|
|
|
|
|
passed as an option to new(), or set later if you are building the query |
|
72
|
|
|
|
|
|
|
up dynamically: |
|
73
|
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
=head2 owner |
|
75
|
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
The Class::DBI subclass that 'owns' this query. In the vast majority |
|
77
|
|
|
|
|
|
|
of cases a query will return objects - the owner is the class of |
|
78
|
|
|
|
|
|
|
which instances will be returned. |
|
79
|
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
=head2 sqlname |
|
81
|
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
This should be the name of a query set up using set_sql. |
|
83
|
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
=head2 where_clause |
|
85
|
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
This is the raw SQL that will substituted into the 'WHERE %s' in your |
|
87
|
|
|
|
|
|
|
query. If you have multiple %s's in your query then you should supply |
|
88
|
|
|
|
|
|
|
a listref of where_clauses. This SQL can include placeholders, which will be |
|
89
|
|
|
|
|
|
|
used when you call run(). |
|
90
|
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
=head2 essential |
|
92
|
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
When retrieving rows from the database that match the WHERE clause of |
|
94
|
|
|
|
|
|
|
the query, these are the columns that we fetch back and pre-load the |
|
95
|
|
|
|
|
|
|
resulting objects with. By default this is the Essential column group |
|
96
|
|
|
|
|
|
|
of the owner class. |
|
97
|
|
|
|
|
|
|
|
|
98
|
|
|
|
|
|
|
=head1 METHODS |
|
99
|
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
=head2 where() |
|
101
|
|
|
|
|
|
|
|
|
102
|
|
|
|
|
|
|
$query->where($match, @columns); |
|
103
|
|
|
|
|
|
|
|
|
104
|
|
|
|
|
|
|
This will extend your 'WHERE' clause by adding a 'AND $column = ?' (or |
|
105
|
|
|
|
|
|
|
whatever $match is, isntead of "=") for each column passed. If you have |
|
106
|
|
|
|
|
|
|
multiple WHERE clauses this will extend the last one. |
|
107
|
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
=cut |
|
109
|
|
|
|
|
|
|
|
|
110
|
|
|
|
|
|
|
sub new { |
|
111
|
0
|
|
|
0
|
1
|
|
my ($class, $self) = @_; |
|
112
|
0
|
|
|
|
|
|
require Carp; |
|
113
|
0
|
|
|
|
|
|
Carp::carp "Class::DBI::Query deprecated"; |
|
114
|
0
|
|
0
|
|
|
|
$self->{owner} ||= caller; |
|
115
|
0
|
|
0
|
|
|
|
$self->{kings} ||= $self->{owner}; |
|
116
|
0
|
|
0
|
|
|
|
$self->{essential} ||= [ $self->{owner}->_essential ]; |
|
117
|
0
|
|
0
|
|
|
|
$self->{sqlname} ||= 'SearchSQL'; |
|
118
|
0
|
|
|
|
|
|
return $class->SUPER::new($self); |
|
119
|
|
|
|
|
|
|
} |
|
120
|
|
|
|
|
|
|
|
|
121
|
|
|
|
|
|
|
sub _essential_string { |
|
122
|
0
|
|
|
0
|
|
|
my $self = shift; |
|
123
|
0
|
|
|
|
|
|
my $table = $self->owner->table_alias; |
|
124
|
0
|
|
|
|
|
|
join ", ", map "$table.$_", $self->essential; |
|
125
|
|
|
|
|
|
|
} |
|
126
|
|
|
|
|
|
|
|
|
127
|
|
|
|
|
|
|
sub where { |
|
128
|
0
|
|
|
0
|
0
|
|
my ($self, $type, @cols) = @_; |
|
129
|
0
|
|
|
|
|
|
my @where = $self->where_clause; |
|
130
|
0
|
|
0
|
|
|
|
my $last = pop @where || ""; |
|
131
|
0
|
|
|
|
|
|
$last .= join " AND ", $self->restrictions; |
|
132
|
0
|
0
|
|
|
|
|
$last .= " ORDER BY " . $self->order_by if $self->order_by; |
|
133
|
0
|
|
|
|
|
|
push @where, $last; |
|
134
|
0
|
|
|
|
|
|
return @where; |
|
135
|
|
|
|
|
|
|
} |
|
136
|
|
|
|
|
|
|
|
|
137
|
|
|
|
|
|
|
sub add_restriction { |
|
138
|
0
|
|
|
0
|
0
|
|
my ($self, $sql) = @_; |
|
139
|
0
|
|
|
|
|
|
$self->restrictions($self->restrictions, $sql); |
|
140
|
|
|
|
|
|
|
} |
|
141
|
|
|
|
|
|
|
|
|
142
|
|
|
|
|
|
|
sub tables { |
|
143
|
0
|
|
|
0
|
0
|
|
my $self = shift; |
|
144
|
0
|
|
|
|
|
|
join ", ", map { join " ", $_->table, $_->table_alias } $self->kings; |
|
|
0
|
|
|
|
|
|
|
|
145
|
|
|
|
|
|
|
} |
|
146
|
|
|
|
|
|
|
|
|
147
|
|
|
|
|
|
|
# my $sth = $query->run(@vals); |
|
148
|
|
|
|
|
|
|
# Runs the SQL set up in $sqlname, e.g. |
|
149
|
|
|
|
|
|
|
# |
|
150
|
|
|
|
|
|
|
# SELECT %s (Essential) |
|
151
|
|
|
|
|
|
|
# FROM %s (Table) |
|
152
|
|
|
|
|
|
|
# WHERE %s = ? (SelectCol = @vals) |
|
153
|
|
|
|
|
|
|
# |
|
154
|
|
|
|
|
|
|
# substituting the relevant values via sprintf, and then executing with $select_val. |
|
155
|
|
|
|
|
|
|
|
|
156
|
|
|
|
|
|
|
sub run { |
|
157
|
0
|
|
|
0
|
0
|
|
my $self = shift; |
|
158
|
0
|
0
|
|
|
|
|
my $owner = $self->owner or Class::DBI->_croak("Query has no owner"); |
|
159
|
0
|
|
0
|
|
|
|
$owner = ref $owner || $owner; |
|
160
|
0
|
0
|
|
|
|
|
$owner->can('db_Main') or $owner->_croak("No database connection defined"); |
|
161
|
0
|
0
|
|
|
|
|
my $sql_name = $self->sqlname or $owner->_croak("Query has no SQL"); |
|
162
|
|
|
|
|
|
|
|
|
163
|
0
|
|
|
|
|
|
my @sel_vals = @_ |
|
164
|
0
|
0
|
|
|
|
|
? ref $_[0] eq "ARRAY" ? @{ $_[0] } : (@_) |
|
|
|
0
|
|
|
|
|
|
|
165
|
|
|
|
|
|
|
: (); |
|
166
|
0
|
|
|
|
|
|
my $sql_method = "sql_$sql_name"; |
|
167
|
|
|
|
|
|
|
|
|
168
|
0
|
|
|
|
|
|
my $sth; |
|
169
|
0
|
|
|
|
|
|
eval { |
|
170
|
0
|
|
|
|
|
|
$sth = |
|
171
|
|
|
|
|
|
|
$owner->$sql_method($self->_essential_string, $self->tables, |
|
172
|
|
|
|
|
|
|
$self->where); |
|
173
|
0
|
|
|
|
|
|
$sth->execute(@sel_vals); |
|
174
|
|
|
|
|
|
|
}; |
|
175
|
0
|
0
|
|
|
|
|
if ($@) { |
|
176
|
0
|
|
|
|
|
|
$owner->_croak( |
|
177
|
|
|
|
|
|
|
"Can't select for $owner using '$sth->{Statement}' ($sql_name): $@", |
|
178
|
|
|
|
|
|
|
err => $@); |
|
179
|
0
|
|
|
|
|
|
return; |
|
180
|
|
|
|
|
|
|
} |
|
181
|
0
|
|
|
|
|
|
return $sth; |
|
182
|
|
|
|
|
|
|
} |
|
183
|
|
|
|
|
|
|
|
|
184
|
|
|
|
|
|
|
1; |