cleanup
|
1 |
package DBIx::Custom; |
2 | ||
3 |
use strict; |
|
4 |
use warnings; |
|
5 | ||
remove run_transaction().
|
6 |
use base 'Object::Simple'; |
many change
|
7 | |
packaging one directory
|
8 |
use Carp 'croak'; |
9 |
use DBI; |
|
10 |
use DBIx::Custom::Result; |
|
cleanup
|
11 |
use DBIx::Custom::Query; |
cleanup
|
12 |
use DBIx::Custom::QueryBuilder; |
update document
|
13 |
use Encode qw/encode_utf8 decode_utf8/; |
packaging one directory
|
14 | |
catch up with Object::Simple...
|
15 |
__PACKAGE__->attr('dbh'); |
cleanup
|
16 |
__PACKAGE__->attr([qw/user password data_source/]); |
renamed default_query_filter...
|
17 |
__PACKAGE__->attr([qw/default_bind_filter default_fetch_filter/]); |
packaging one directory
|
18 | |
removed register_format()
|
19 |
__PACKAGE__->dual_attr('filters', default => sub { {} }, |
20 |
inherit => 'hash_copy'); |
|
21 |
__PACKAGE__->register_filter( |
|
update document
|
22 |
encode_utf8 => sub { encode_utf8($_[0]) }, |
23 |
decode_utf8 => sub { decode_utf8($_[0]) } |
|
removed register_format()
|
24 |
); |
packaging one directory
|
25 | |
cleanup
|
26 |
__PACKAGE__->attr(result_class => 'DBIx::Custom::Result'); |
renamed default_query_filter...
|
27 |
__PACKAGE__->attr(sql_builder => sub {DBIx::Custom::QueryBuilder->new}); |
added cache_method attribute
|
28 | |
add cache attribute
|
29 |
__PACKAGE__->attr(cache => 1); |
added cache_method attribute
|
30 |
__PACKAGE__->attr(cache_method => sub { |
31 |
sub { |
|
32 |
my $self = shift; |
|
33 |
|
|
34 |
$self->{_cached} ||= {}; |
|
35 |
|
|
36 |
if (@_ > 1) { |
|
37 |
$self->{_cached}{$_[0]} = $_[1] |
|
38 |
} |
|
39 |
else { |
|
40 |
return $self->{_cached}{$_[0]} |
|
41 |
} |
|
42 |
} |
|
43 |
}); |
|
removed register_format()
|
44 | |
packaging one directory
|
45 |
sub connect { |
removed register_format()
|
46 |
my $proto = shift; |
47 |
|
|
48 |
# Create |
|
49 |
my $self = ref $proto ? $proto : $proto->new(@_); |
|
update document
|
50 |
|
51 |
# Information |
|
packaging one directory
|
52 |
my $data_source = $self->data_source; |
53 |
my $user = $self->user; |
|
54 |
my $password = $self->password; |
|
55 |
|
|
update document
|
56 |
# Connect |
select, insert, update, upda...
|
57 |
my $dbh = eval {DBI->connect( |
packaging one directory
|
58 |
$data_source, |
59 |
$user, |
|
60 |
$password, |
|
61 |
{ |
|
62 |
RaiseError => 1, |
|
63 |
PrintError => 0, |
|
64 |
AutoCommit => 1, |
|
65 |
} |
|
66 |
)}; |
|
67 |
|
|
update document
|
68 |
# Connect error |
packaging one directory
|
69 |
croak $@ if $@; |
70 |
|
|
update document
|
71 |
# Database handle |
packaging one directory
|
72 |
$self->dbh($dbh); |
update document
|
73 |
|
packaging one directory
|
74 |
return $self; |
75 |
} |
|
76 | ||
removed DESTROY method(not b...
|
77 |
sub register_filter { |
78 |
my $invocant = shift; |
|
update document
|
79 |
|
changed argument of tag proc...
|
80 |
# Register filter |
removed DESTROY method(not b...
|
81 |
my $filters = ref $_[0] eq 'HASH' ? $_[0] : {@_}; |
82 |
$invocant->filters({%{$invocant->filters}, %$filters}); |
|
update document
|
83 |
|
removed DESTROY method(not b...
|
84 |
return $invocant; |
packaging one directory
|
85 |
} |
86 | ||
removed register_format()
|
87 |
our %VALID_INSERT_ARGS = map { $_ => 1 } qw/table param append filter/; |
cleanup insert
|
88 | |
packaging one directory
|
89 |
sub insert { |
select, insert, update, upda...
|
90 |
my ($self, %args) = @_; |
removed register_format()
|
91 | |
cleanup insert
|
92 |
# Check arguments |
select, insert, update, upda...
|
93 |
foreach my $name (keys %args) { |
changed argument of tag proc...
|
94 |
croak qq{"$name" is invalid name} |
cleanup insert
|
95 |
unless $VALID_INSERT_ARGS{$name}; |
96 |
} |
|
97 |
|
|
removed register_format()
|
98 |
# Arguments |
select, insert, update, upda...
|
99 |
my $table = $args{table} || ''; |
100 |
my $param = $args{param} || {}; |
|
101 |
my $append = $args{append} || ''; |
|
102 |
my $filter = $args{filter}; |
|
packaging one directory
|
103 |
|
104 |
# Insert keys |
|
removed register_format()
|
105 |
my @insert_keys = keys %$param; |
packaging one directory
|
106 |
|
107 |
# Templte for insert |
|
renamed default_query_filter...
|
108 |
my $source = "insert into $table {insert " |
removed DESTROY method(not b...
|
109 |
. join(' ', @insert_keys) . '}'; |
renamed default_query_filter...
|
110 |
$source .= " $append" if $append; |
packaging one directory
|
111 |
|
112 |
# Execute query |
|
renamed default_query_filter...
|
113 |
my $ret_val = $self->execute($source, param => $param, |
removed register_format()
|
114 |
filter => $filter); |
packaging one directory
|
115 |
|
116 |
return $ret_val; |
|
117 |
} |
|
118 | ||
cleanup update and update_al...
|
119 |
our %VALID_UPDATE_ARGS |
removed register_format()
|
120 |
= map { $_ => 1 } qw/table param where append filter allow_update_all/; |
cleanup update and update_al...
|
121 | |
packaging one directory
|
122 |
sub update { |
select, insert, update, upda...
|
123 |
my ($self, %args) = @_; |
cleanup update and update_al...
|
124 |
|
125 |
# Check arguments |
|
select, insert, update, upda...
|
126 |
foreach my $name (keys %args) { |
changed argument of tag proc...
|
127 |
croak qq{"$name" is invalid name} |
cleanup update and update_al...
|
128 |
unless $VALID_UPDATE_ARGS{$name}; |
129 |
} |
|
130 |
|
|
131 |
# Arguments |
|
select, insert, update, upda...
|
132 |
my $table = $args{table} || ''; |
133 |
my $param = $args{param} || {}; |
|
134 |
my $where = $args{where} || {}; |
|
135 |
my $append_statement = $args{append} || ''; |
|
136 |
my $filter = $args{filter}; |
|
137 |
my $allow_update_all = $args{allow_update_all}; |
|
packaging one directory
|
138 |
|
139 |
# Update keys |
|
removed register_format()
|
140 |
my @update_keys = keys %$param; |
packaging one directory
|
141 |
|
142 |
# Where keys |
|
removed register_format()
|
143 |
my @where_keys = keys %$where; |
packaging one directory
|
144 |
|
145 |
# Not exists where keys |
|
changed argument of tag proc...
|
146 |
croak qq{"where" must contain column-value pair} |
cleanup update and update_al...
|
147 |
if !@where_keys && !$allow_update_all; |
packaging one directory
|
148 |
|
149 |
# Update clause |
|
150 |
my $update_clause = '{update ' . join(' ', @update_keys) . '}'; |
|
151 |
|
|
152 |
# Where clause |
|
153 |
my $where_clause = ''; |
|
simplify filtering system
|
154 |
my $new_where = {}; |
many change
|
155 |
|
packaging one directory
|
156 |
if (@where_keys) { |
157 |
$where_clause = 'where '; |
|
158 |
foreach my $where_key (@where_keys) { |
|
simplify filtering system
|
159 |
|
160 |
$where_clause .= "{= $where_key} and "; |
|
packaging one directory
|
161 |
} |
162 |
$where_clause =~ s/ and $//; |
|
163 |
} |
|
164 |
|
|
165 |
# Template for update |
|
renamed default_query_filter...
|
166 |
my $source = "update $table $update_clause $where_clause"; |
167 |
$source .= " $append_statement" if $append_statement; |
|
packaging one directory
|
168 |
|
changed argument of tag proc...
|
169 |
# Rearrange parameters |
removed register_format()
|
170 |
foreach my $wkey (@where_keys) { |
simplify filtering system
|
171 |
|
removed register_format()
|
172 |
if (exists $param->{$wkey}) { |
173 |
$param->{$wkey} = [$param->{$wkey}] |
|
174 |
unless ref $param->{$wkey} eq 'ARRAY'; |
|
simplify filtering system
|
175 |
|
removed register_format()
|
176 |
push @{$param->{$wkey}}, $where->{$wkey}; |
simplify filtering system
|
177 |
} |
add tests
|
178 |
else { |
removed register_format()
|
179 |
$param->{$wkey} = $where->{$wkey}; |
add tests
|
180 |
} |
simplify filtering system
|
181 |
} |
packaging one directory
|
182 |
|
183 |
# Execute query |
|
renamed default_query_filter...
|
184 |
my $ret_val = $self->execute($source, param => $param, |
removed register_format()
|
185 |
filter => $filter); |
packaging one directory
|
186 |
|
187 |
return $ret_val; |
|
188 |
} |
|
189 | ||
select, insert, update, upda...
|
190 |
sub update_all { shift->update(allow_update_all => 1, @_) }; |
packaging one directory
|
191 | |
refactoring delete and delet...
|
192 |
our %VALID_DELETE_ARGS |
removed register_format()
|
193 |
= map { $_ => 1 } qw/table where append filter allow_delete_all/; |
refactoring delete and delet...
|
194 | |
packaging one directory
|
195 |
sub delete { |
select, insert, update, upda...
|
196 |
my ($self, %args) = @_; |
refactoring delete and delet...
|
197 |
|
198 |
# Check arguments |
|
select, insert, update, upda...
|
199 |
foreach my $name (keys %args) { |
changed argument of tag proc...
|
200 |
croak qq{"$name" is invalid name} |
refactoring delete and delet...
|
201 |
unless $VALID_DELETE_ARGS{$name}; |
202 |
} |
|
203 |
|
|
204 |
# Arguments |
|
select, insert, update, upda...
|
205 |
my $table = $args{table} || ''; |
206 |
my $where = $args{where} || {}; |
|
207 |
my $append_statement = $args{append}; |
|
208 |
my $filter = $args{filter}; |
|
209 |
my $allow_delete_all = $args{allow_delete_all}; |
|
packaging one directory
|
210 |
|
211 |
# Where keys |
|
removed register_format()
|
212 |
my @where_keys = keys %$where; |
packaging one directory
|
213 |
|
214 |
# Not exists where keys |
|
changed argument of tag proc...
|
215 |
croak qq{Key-value pairs for where clause must be specified to "delete" second argument} |
refactoring delete and delet...
|
216 |
if !@where_keys && !$allow_delete_all; |
packaging one directory
|
217 |
|
218 |
# Where clause |
|
219 |
my $where_clause = ''; |
|
220 |
if (@where_keys) { |
|
221 |
$where_clause = 'where '; |
|
removed register_format()
|
222 |
foreach my $wkey (@where_keys) { |
223 |
$where_clause .= "{= $wkey} and "; |
|
packaging one directory
|
224 |
} |
225 |
$where_clause =~ s/ and $//; |
|
226 |
} |
|
227 |
|
|
228 |
# Template for delete |
|
renamed default_query_filter...
|
229 |
my $source = "delete from $table $where_clause"; |
230 |
$source .= " $append_statement" if $append_statement; |
|
packaging one directory
|
231 |
|
232 |
# Execute query |
|
renamed default_query_filter...
|
233 |
my $ret_val = $self->execute($source, param => $where, |
removed register_format()
|
234 |
filter => $filter); |
packaging one directory
|
235 |
|
236 |
return $ret_val; |
|
237 |
} |
|
238 | ||
select, insert, update, upda...
|
239 |
sub delete_all { shift->delete(allow_delete_all => 1, @_) } |
packaging one directory
|
240 | |
refactoring select
|
241 |
our %VALID_SELECT_ARGS |
added commit method
|
242 |
= map { $_ => 1 } qw/table column where append relation filter param/; |
refactoring select
|
243 | |
packaging one directory
|
244 |
sub select { |
select, insert, update, upda...
|
245 |
my ($self, %args) = @_; |
packaging one directory
|
246 |
|
refactoring select
|
247 |
# Check arguments |
select, insert, update, upda...
|
248 |
foreach my $name (keys %args) { |
changed argument of tag proc...
|
249 |
croak qq{"$name" is invalid name} |
refactoring select
|
250 |
unless $VALID_SELECT_ARGS{$name}; |
251 |
} |
|
packaging one directory
|
252 |
|
refactoring select
|
253 |
# Arguments |
select, insert, update, upda...
|
254 |
my $tables = $args{table} || []; |
removed register_format()
|
255 |
$tables = [$tables] unless ref $tables eq 'ARRAY'; |
select, insert, update, upda...
|
256 |
my $columns = $args{column} || []; |
257 |
my $where = $args{where} || {}; |
|
258 |
my $relation = $args{relation}; |
|
259 |
my $append = $args{append}; |
|
260 |
my $filter = $args{filter}; |
|
261 |
my $param = $args{param} || {}; |
|
packaging one directory
|
262 |
|
263 |
# SQL template for select statement |
|
renamed default_query_filter...
|
264 |
my $source = 'select '; |
packaging one directory
|
265 |
|
added commit method
|
266 |
# Column clause |
packaging one directory
|
267 |
if (@$columns) { |
268 |
foreach my $column (@$columns) { |
|
renamed default_query_filter...
|
269 |
$source .= "$column, "; |
packaging one directory
|
270 |
} |
renamed default_query_filter...
|
271 |
$source =~ s/, $/ /; |
packaging one directory
|
272 |
} |
273 |
else { |
|
renamed default_query_filter...
|
274 |
$source .= '* '; |
packaging one directory
|
275 |
} |
276 |
|
|
added commit method
|
277 |
# Table |
renamed default_query_filter...
|
278 |
$source .= 'from '; |
packaging one directory
|
279 |
foreach my $table (@$tables) { |
renamed default_query_filter...
|
280 |
$source .= "$table, "; |
packaging one directory
|
281 |
} |
renamed default_query_filter...
|
282 |
$source =~ s/, $/ /; |
packaging one directory
|
283 |
|
added commit method
|
284 |
# Where clause |
285 |
my @where_keys = keys %$where; |
|
packaging one directory
|
286 |
if (@where_keys) { |
renamed default_query_filter...
|
287 |
$source .= 'where '; |
packaging one directory
|
288 |
foreach my $where_key (@where_keys) { |
renamed default_query_filter...
|
289 |
$source .= "{= $where_key} and "; |
packaging one directory
|
290 |
} |
291 |
} |
|
renamed default_query_filter...
|
292 |
$source =~ s/ and $//; |
packaging one directory
|
293 |
|
added commit method
|
294 |
# Relation |
295 |
if ($relation) { |
|
renamed default_query_filter...
|
296 |
$source .= @where_keys ? "and " : "where "; |
added commit method
|
297 |
foreach my $rkey (keys %$relation) { |
renamed default_query_filter...
|
298 |
$source .= "$rkey = " . $relation->{$rkey} . " and "; |
packaging one directory
|
299 |
} |
300 |
} |
|
renamed default_query_filter...
|
301 |
$source =~ s/ and $//; |
added commit method
|
302 |
|
303 |
# Append some statement |
|
renamed default_query_filter...
|
304 |
$source .= " $append" if $append; |
packaging one directory
|
305 |
|
306 |
# Execute query |
|
renamed default_query_filter...
|
307 |
my $result = $self->execute($source, param => $where, |
removed register_format()
|
308 |
filter => $filter); |
packaging one directory
|
309 |
|
310 |
return $result; |
|
311 |
} |
|
312 | ||
renamed build_query to creat...
|
313 |
sub create_query { |
renamed default_query_filter...
|
314 |
my ($self, $source) = @_; |
removed register_format()
|
315 |
|
renamed default_query_filter...
|
316 |
# Cache |
added cache_method attribute
|
317 |
my $cache = $self->cache; |
version 0.0901
|
318 |
|
removed reconnect method
|
319 |
# Create query |
320 |
my $query; |
|
added cache_method attribute
|
321 |
if ($cache) { |
322 |
|
|
renamed default_query_filter...
|
323 |
# Get query |
324 |
my $q = $self->cache_method->($self, $source); |
|
added cache_method attribute
|
325 |
|
326 |
# Create query |
|
327 |
$query = DBIx::Custom::Query->new($q) if $q; |
|
removed reconnect method
|
328 |
} |
added cache_method attribute
|
329 |
|
330 |
unless ($query) { |
|
renamed default_query_filter...
|
331 | |
332 |
# Create SQL object |
|
333 |
my $builder = $self->sql_builder; |
|
added cache_method attribute
|
334 |
|
335 |
# Create query |
|
renamed default_query_filter...
|
336 |
$query = eval{$builder->build_query($source)}; |
changed argument of tag proc...
|
337 |
croak $@ if $@; |
removed reconnect method
|
338 |
|
added cache_method attribute
|
339 |
# Cache query |
renamed default_query_filter...
|
340 |
$self->cache_method->($self, $source, |
added cache_method attribute
|
341 |
{sql => $query->sql, |
342 |
columns => $query->columns}) |
|
343 |
if $cache; |
|
removed reconnect method
|
344 |
} |
version 0.0901
|
345 |
|
removed reconnect method
|
346 |
# Prepare statement handle |
select, insert, update, upda...
|
347 |
my $sth = eval {$self->dbh->prepare($query->{sql})}; |
348 |
croak $@ if $@; |
|
renamed fetch_rows to fetch_...
|
349 |
|
removed reconnect method
|
350 |
# Set statement handle |
351 |
$query->sth($sth); |
|
352 |
|
|
353 |
return $query; |
|
354 |
} |
|
355 | ||
356 |
our %VALID_EXECUTE_ARGS = map { $_ => 1 } qw/param filter/; |
|
357 | ||
358 |
sub execute{ |
|
select, insert, update, upda...
|
359 |
my ($self, $query, %args) = @_; |
removed reconnect method
|
360 |
|
361 |
# Check arguments |
|
select, insert, update, upda...
|
362 |
foreach my $name (keys %args) { |
changed argument of tag proc...
|
363 |
croak qq{"$name" is invalid name} |
removed reconnect method
|
364 |
unless $VALID_EXECUTE_ARGS{$name}; |
365 |
} |
|
366 |
|
|
select, insert, update, upda...
|
367 |
my $params = $args{param} || {}; |
removed reconnect method
|
368 |
|
369 |
# First argument is SQL template |
|
renamed build_query to creat...
|
370 |
$query = $self->create_query($query) |
changed argument of tag proc...
|
371 |
unless ref $query; |
removed reconnect method
|
372 |
|
select, insert, update, upda...
|
373 |
my $filter = $args{filter} || $query->filter || {}; |
removed reconnect method
|
374 |
|
375 |
# Create bind value |
|
376 |
my $bind_values = $self->_build_bind_values($query, $params, $filter); |
|
377 |
|
|
378 |
# Execute |
|
379 |
my $sth = $query->sth; |
|
select, insert, update, upda...
|
380 |
my $affected = eval {$sth->execute(@$bind_values)}; |
381 |
croak $@ if $@; |
|
removed reconnect method
|
382 |
|
383 |
# Return resultset if select statement is executed |
|
384 |
if ($sth->{NUM_OF_FIELDS}) { |
|
385 |
|
|
386 |
# Create result |
|
renamed default_query_filter...
|
387 |
my $result = $self->result_class->new( |
388 |
sth => $sth, |
|
389 |
default_filter => $self->default_fetch_filter, |
|
390 |
filters => $self->filters |
|
391 |
); |
|
392 | ||
removed reconnect method
|
393 |
return $result; |
394 |
} |
|
395 |
return $affected; |
|
396 |
} |
|
397 | ||
398 |
sub _build_bind_values { |
|
399 |
my ($self, $query, $params, $filter) = @_; |
|
400 |
|
|
401 |
# binding values |
|
402 |
my @bind_values; |
|
403 |
|
|
404 |
# Build bind values |
|
405 |
my $count = {}; |
|
406 |
foreach my $column (@{$query->columns}) { |
|
407 |
|
|
changed argument of tag proc...
|
408 |
croak qq{"$column" is not exists in params} |
removed reconnect method
|
409 |
unless exists $params->{$column}; |
410 |
|
|
411 |
# Value |
|
412 |
my $value = ref $params->{$column} eq 'ARRAY' |
|
413 |
? $params->{$column}->[$count->{$column} || 0] |
|
414 |
: $params->{$column}; |
|
415 |
|
|
416 |
# Filter |
|
417 |
$filter ||= {}; |
|
418 |
|
|
419 |
# Filter name |
|
renamed default_query_filter...
|
420 |
my $fname = $filter->{$column} || $self->default_bind_filter || ''; |
removed reconnect method
|
421 |
|
422 |
my $filter_func; |
|
423 |
if ($fname) { |
|
424 |
|
|
425 |
if (ref $fname eq 'CODE') { |
|
426 |
$filter_func = $fname; |
|
427 |
} |
|
428 |
else { |
|
429 |
my $filters = $self->filters; |
|
changed argument of tag proc...
|
430 |
croak qq{Not exists filter "$fname"} |
removed DESTROY method(not b...
|
431 |
unless exists $filters->{$fname}; |
removed reconnect method
|
432 |
$filter_func = $filters->{$fname}; |
433 |
} |
|
434 |
} |
|
435 |
|
|
436 |
push @bind_values, $filter_func |
|
437 |
? $filter_func->($value) |
|
438 |
: $value; |
|
439 |
|
|
440 |
# Count up |
|
441 |
$count->{$column}++; |
|
442 |
} |
|
443 |
|
|
444 |
return \@bind_values; |
|
445 |
} |
|
446 | ||
447 |
=head1 NAME |
|
448 | ||
renamed build_query to creat...
|
449 |
DBIx::Custom - DBI interface, having hash parameter binding and filtering system |
removed reconnect method
|
450 | |
451 |
=cut |
|
452 | ||
renamed build_query to creat...
|
453 |
our $VERSION = '0.1606'; |
removed reconnect method
|
454 | |
455 |
=head1 STABILITY |
|
456 | ||
renamed build_query to creat...
|
457 |
B<This module is not stable>. |
458 |
Method name and implementations will be changed for a while. |
|
removed reconnect method
|
459 | |
460 |
=head1 SYNOPSYS |
|
cleanup
|
461 | |
renamed build_query to creat...
|
462 |
Connect to the database. |
463 |
|
|
464 |
use DBIx::Custom; |
|
removed reconnect method
|
465 |
my $dbi = DBIx::Custom->connect(data_source => "dbi:mysql:database=books", |
466 |
user => 'ken', password => '!LFKD%$&'); |
|
cleanup
|
467 | |
renamed build_query to creat...
|
468 |
Insert, update, and delete |
cleanup
|
469 | |
removed reconnect method
|
470 |
# Insert |
471 |
$dbi->insert(table => 'books', |
|
472 |
param => {title => 'perl', author => 'Ken'}, |
|
473 |
filter => {title => 'encode_utf8'}); |
|
474 |
|
|
475 |
# Update |
|
476 |
$dbi->update(table => 'books', |
|
477 |
param => {title => 'aaa', author => 'Ken'}, |
|
478 |
where => {id => 5}, |
|
479 |
filter => {title => 'encode_utf8'}); |
|
480 |
|
|
481 |
# Update all |
|
482 |
$dbi->update_all(table => 'books', |
|
483 |
param => {title => 'aaa'}, |
|
484 |
filter => {title => 'encode_utf8'}); |
|
485 |
|
|
486 |
# Delete |
|
487 |
$dbi->delete(table => 'books', |
|
488 |
where => {author => 'Ken'}, |
|
489 |
filter => {title => 'encode_utf8'}); |
|
490 |
|
|
491 |
# Delete all |
|
492 |
$dbi->delete_all(table => 'books'); |
|
cleanup
|
493 | |
renamed build_query to creat...
|
494 |
Select |
cleanup
|
495 | |
removed reconnect method
|
496 |
# Select |
497 |
my $result = $dbi->select(table => 'books'); |
|
renamed fetch_rows to fetch_...
|
498 |
|
renamed build_query to creat...
|
499 |
# Select, more complex |
renamed fetch_rows to fetch_...
|
500 |
my $result = $dbi->select( |
update document
|
501 |
table => 'books', |
502 |
column => [qw/author title/], |
|
503 |
where => {author => 'Ken'}, |
|
504 |
append => 'order by id limit 1', |
|
renamed build_query to creat...
|
505 |
filter => {title => 'encode_utf8'} |
renamed fetch_rows to fetch_...
|
506 |
); |
added commit method
|
507 |
|
renamed build_query to creat...
|
508 |
# Select, join table |
added commit method
|
509 |
my $result = $dbi->select( |
renamed build_query to creat...
|
510 |
table => ['books', 'rental'], |
511 |
column => ['books.name as book_name'] |
|
added commit method
|
512 |
relation => {'books.id' => 'rental.book_id'} |
513 |
); |
|
cleanup
|
514 | |
renamed build_query to creat...
|
515 |
Execute SQL |
cleanup
|
516 | |
renamed build_query to creat...
|
517 |
# Execute SQL |
removed register_format()
|
518 |
$dbi->execute("select title from books"); |
519 |
|
|
renamed build_query to creat...
|
520 |
# Execute SQL with hash binding and filtering |
removed register_format()
|
521 |
$dbi->execute("select id from books where {= author} && {like title}", |
522 |
param => {author => 'ken', title => '%Perl%'}, |
|
renamed build_query to creat...
|
523 |
filter => {title => 'encode_utf8'}); |
removed reconnect method
|
524 | |
525 |
# Create query and execute it |
|
renamed build_query to creat...
|
526 |
my $query = $dbi->create_query( |
removed reconnect method
|
527 |
"select id from books where {= author} && {like title}" |
528 |
); |
|
529 |
$dbi->execute($query, param => {author => 'ken', title => '%Perl%'}) |
|
cleanup
|
530 | |
531 |
More features. |
|
532 | ||
removed register_format()
|
533 |
# Default filter |
renamed default_query_filter...
|
534 |
$dbi->default_bind_filter('encode_utf8'); |
removed register_format()
|
535 |
$dbi->default_fetch_filter('decode_utf8'); |
cleanup
|
536 | |
537 |
# Get DBI object |
|
538 |
my $dbh = $dbi->dbh; |
|
539 | ||
540 |
Fetch row. |
|
541 | ||
removed register_format()
|
542 |
# Fetch |
543 |
while (my $row = $result->fetch) { |
|
544 |
# ... |
|
545 |
} |
|
546 |
|
|
547 |
# Fetch hash |
|
548 |
while (my $row = $result->fetch_hash) { |
|
549 |
|
|
550 |
} |
|
551 |
|
|
removed reconnect method
|
552 | |
553 |
=head1 DESCRIPTION |
|
554 | ||
renamed build_query to creat...
|
555 |
=head2 1. Features |
removed reconnect method
|
556 | |
renamed build_query to creat...
|
557 |
L<DBIx::Custom> is one of L<DBI> interface modules, |
558 |
such as L<DBIx::Class>, L<DBIx::Simple>. |
|
removed reconnect method
|
559 | |
renamed build_query to creat...
|
560 |
This module is not O/R mapper. O/R mapper is useful, |
561 |
but you must learn many syntax of the O/R mapper, |
|
562 |
which is almost another language |
|
563 |
Create SQL statement is offten not effcient and damage SQL performance. |
|
564 |
so you have to execute raw SQL in the end. |
|
removed reconnect method
|
565 | |
renamed build_query to creat...
|
566 |
L<DBIx::Custom> is middle area between L<DBI> and O/R mapper. |
567 |
L<DBIx::Custom> provide flexible hash parameter binding adn filtering system, |
|
568 |
and suger method, such as C<select()>, C<update()>, C<delete()>, C<select()> |
|
569 |
to execute a query easily. |
|
removed reconnect method
|
570 | |
renamed build_query to creat...
|
571 |
L<DBIx::Custom> respects SQL. SQL is not beautiful, but de-facto standard, |
572 |
so all people learing database system know it. |
|
573 |
If you know SQL statement, |
|
574 |
you learn a little thing about L<DBIx::Custom> to do your works. |
|
removed reconnect method
|
575 | |
renamed build_query to creat...
|
576 |
=head2 2. Basic usage |
removed reconnect method
|
577 | |
renamed build_query to creat...
|
578 |
=head3 connect to the database |
removed reconnect method
|
579 | |
renamed build_query to creat...
|
580 |
C<connect()> method create a new L<DBIx::Custom> |
581 |
object and connect to the database. |
|
removed reconnect method
|
582 | |
renamed build_query to creat...
|
583 |
use DBIx::Custom; |
584 |
my $dbi = DBIx::Custom->connect(data_source => "dbi:mysql:database=books", |
|
585 |
user => 'ken', password => '!LFKD%$&'); |
|
586 | ||
587 |
=head3 Suger methods |
|
588 | ||
589 |
L<DBIx::Custom> has suger methods, such as C<insert()>, C<update()>, |
|
590 |
C<delete()> and C<select()>. If you want to do simple works, |
|
591 |
You don't have to create SQL statement. |
|
592 | ||
593 |
B<Execute insert statement:> |
|
removed DESTROY method(not b...
|
594 | |
595 | ||
596 | ||
removed reconnect method
|
597 | |
598 | ||
update document
|
599 |
=head1 ATTRIBUTES |
packaging one directory
|
600 | |
removed DBIx::Custom commit ...
|
601 |
=head2 C<user> |
packaging one directory
|
602 | |
cleanup
|
603 |
my $user = $dbi->user; |
604 |
$dbi = $dbi->user('Ken'); |
|
removed DESTROY method(not b...
|
605 | |
cleanup
|
606 |
User name. |
607 |
C<connect()> method use this value to connect the database. |
|
bind_filter argument is chan...
|
608 |
|
removed DBIx::Custom commit ...
|
609 |
=head2 C<password> |
packaging one directory
|
610 | |
cleanup
|
611 |
my $password = $dbi->password; |
612 |
$dbi = $dbi->password('lkj&le`@s'); |
|
packaging one directory
|
613 | |
cleanup
|
614 |
Password. |
615 |
C<connect()> method use this value to connect the database. |
|
removed DESTROY method(not b...
|
616 | |
removed DBIx::Custom commit ...
|
617 |
=head2 C<data_source> |
packaging one directory
|
618 | |
cleanup
|
619 |
my $data_source = $dbi->data_source; |
cleanup
|
620 |
$dbi = $dbi->data_source("DBI:mysql:database=dbname"); |
removed DESTROY method(not b...
|
621 | |
cleanup
|
622 |
Data source. |
623 |
C<connect()> method use this value to connect the database. |
|
removed DESTROY method(not b...
|
624 | |
removed DBIx::Custom commit ...
|
625 |
=head2 C<dbh> |
packaging one directory
|
626 | |
cleanup
|
627 |
my $dbh = $dbi->dbh; |
628 |
$dbi = $dbi->dbh($dbh); |
|
packaging one directory
|
629 | |
cleanup
|
630 |
L<DBI> object. You can call all methods of L<DBI>. |
packaging one directory
|
631 | |
removed DBIx::Custom commit ...
|
632 |
=head2 C<filters> |
packaging one directory
|
633 | |
cleanup
|
634 |
my $filters = $dbi->filters; |
cleanup
|
635 |
$dbi = $dbi->filters(\%filters); |
version 0.0901
|
636 | |
removed DESTROY method(not b...
|
637 |
Filter functions. |
renamed build_query to creat...
|
638 |
"encode_utf8" and "decode_utf8" is registered by default. |
version 0.0901
|
639 | |
renamed default_query_filter...
|
640 |
=head2 C<default_bind_filter> |
packaging one directory
|
641 | |
cleanup
|
642 |
my $default_bind_filter = $dbi->default_bind_filter |
643 |
$dbi = $dbi->default_bind_filter('encode_utf8'); |
|
packaging one directory
|
644 | |
cleanup
|
645 |
Default filter when parameter binding is executed. |
packaging one directory
|
646 | |
removed DESTROY method(not b...
|
647 |
=head2 C<default_fetch_filter> |
bind_filter argument is chan...
|
648 | |
cleanup
|
649 |
my $default_fetch_filter = $dbi->default_fetch_filter; |
650 |
$dbi = $dbi->default_fetch_filter('decode_utf8'); |
|
bind_filter argument is chan...
|
651 | |
cleanup
|
652 |
Default filter when row is fetched. |
packaging one directory
|
653 | |
removed DESTROY method(not b...
|
654 |
=head2 C<result_class> |
bind_filter argument is chan...
|
655 | |
cleanup
|
656 |
my $result_class = $dbi->result_class; |
657 |
$dbi = $dbi->result_class('DBIx::Custom::Result'); |
|
packaging one directory
|
658 | |
removed DESTROY method(not b...
|
659 |
Result class for select statement. |
renamed default_query_filter...
|
660 |
Default to L<DBIx::Custom::Result>. |
update document
|
661 | |
renamed default_query_filter...
|
662 |
=head2 C<sql_builder> |
added commit method
|
663 | |
cleanup
|
664 |
my $sql_class = $dbi->sql_builder; |
665 |
$dbi = $dbi->sql_builder(DBIx::Custom::QueryBuilder->new); |
|
added commit method
|
666 | |
cleanup
|
667 |
SQL builder. sql_builder must be |
renamed build_query to creat...
|
668 |
the instance of L<DBIx::Custom::QueryBuilder> subclass. |
669 |
Default to L<DBIx::Custom::QueryBuilder> object. |
|
cleanup
|
670 | |
671 |
=head2 C<cache> |
|
672 | ||
673 |
my $cache = $dbi->cache; |
|
674 |
$dbi = $dbi->cache(1); |
|
675 | ||
renamed build_query to creat...
|
676 |
Enable parsed L<DBIx::Custom::Query> object caching. |
cleanup
|
677 |
Default to 1. |
678 | ||
679 |
=head2 C<cache_method> |
|
680 | ||
681 |
$dbi = $dbi->cache_method(\&cache_method); |
|
682 |
$cache_method = $dbi->cache_method |
|
683 | ||
renamed build_query to creat...
|
684 |
Method to set and get caches. |
cleanup
|
685 | |
686 |
B<Example:> |
|
687 | ||
688 |
$dbi->cache_method( |
|
689 |
sub { |
|
690 |
my $self = shift; |
|
691 |
|
|
692 |
$self->{_cached} ||= {}; |
|
693 |
|
|
694 |
if (@_ > 1) { |
|
695 |
$self->{_cached}{$_[0]} = $_[1] |
|
696 |
} |
|
697 |
else { |
|
698 |
return $self->{_cached}{$_[0]} |
|
699 |
} |
|
700 |
} |
|
701 |
); |
|
added commit method
|
702 | |
removed reconnect method
|
703 |
=head1 METHODS |
added commit method
|
704 | |
cleanup
|
705 |
L<DBIx::Custom> inherits all methods from L<Object::Simple> |
706 |
and implements the following new ones. |
|
added commit method
|
707 | |
removed DBIx::Custom commit ...
|
708 |
=head2 C<connect> |
packaging one directory
|
709 | |
cleanup
|
710 |
my $dbi = DBIx::Custom->connect(data_source => "dbi:mysql:database=dbname", |
update document
|
711 |
user => 'ken', password => '!LFKD%$&'); |
bind_filter argument is chan...
|
712 | |
cleanup
|
713 |
Create a new L<DBIx::Custom> object and connect to the database. |
renamed build_query to creat...
|
714 |
L<DBIx::Custom> is a wrapper of L<DBI>. |
715 |
C<AutoCommit> and C<RaiseError> option is true, |
|
716 |
and C<PrintError> option is false by default. |
|
packaging one directory
|
717 | |
removed DBIx::Custom commit ...
|
718 |
=head2 C<insert> |
packaging one directory
|
719 | |
cleanup
|
720 |
$dbi->insert(table => $table, |
721 |
param => \%param, |
|
722 |
append => $append, |
|
723 |
filter => \%filter); |
|
update document
|
724 | |
renamed build_query to creat...
|
725 |
Execute insert statement. |
726 |
C<insert> method have C<table>, C<param>, C<append> |
|
727 |
and C<filter> arguments. |
|
728 |
C<table> is a table name. |
|
729 |
C<param> is column-value pairs. this must be hash reference. |
|
730 |
C<append> is a string added at the end of the SQL statement. |
|
731 |
C<filter> is filters when parameter binding is executed. |
|
732 |
This is overwrites C<default_bind_filter>. |
|
733 |
Return value of C<insert> is the count of affected rows. |
|
734 | ||
removed DESTROY method(not b...
|
735 |
B<Example:> |
version 0.0901
|
736 | |
removed register_format()
|
737 |
$dbi->insert(table => 'books', |
738 |
param => {title => 'Perl', author => 'Taro'}, |
|
739 |
append => "some statement", |
|
740 |
filter => {title => 'encode_utf8'}) |
|
version 0.0901
|
741 | |
removed DBIx::Custom commit ...
|
742 |
=head2 C<update> |
packaging one directory
|
743 | |
cleanup
|
744 |
$dbi->update(table => $table, |
745 |
param => \%params, |
|
746 |
where => \%where, |
|
747 |
append => $append, |
|
748 |
filter => \%filter) |
|
version 0.0901
|
749 | |
renamed build_query to creat...
|
750 |
Execute update statement. |
751 |
C<update> method have C<table>, C<param>, C<where>, C<append> |
|
752 |
and C<filter> arguments. |
|
753 |
C<table> is a table name. |
|
754 |
C<param> is column-value pairs. this must be hash reference. |
|
755 |
C<where> is where clause. this must be hash reference. |
|
756 |
C<append> is a string added at the end of the SQL statement. |
|
757 |
C<filter> is filters when parameter binding is executed. |
|
758 |
This is overwrites C<default_bind_filter>. |
|
759 |
Return value of C<update> is the count of affected rows. |
|
update document
|
760 | |
removed DESTROY method(not b...
|
761 |
B<Example:> |
bind_filter argument is chan...
|
762 | |
removed register_format()
|
763 |
$dbi->update(table => 'books', |
764 |
param => {title => 'Perl', author => 'Taro'}, |
|
765 |
where => {id => 5}, |
|
renamed build_query to creat...
|
766 |
append => "for update", |
added commit method
|
767 |
filter => {title => 'encode_utf8'}); |
version 0.0901
|
768 | |
removed DBIx::Custom commit ...
|
769 |
=head2 C<update_all> |
packaging one directory
|
770 | |
cleanup
|
771 |
$dbi->update_all(table => $table, |
772 |
param => \%params, |
|
773 |
filter => \%filter, |
|
774 |
append => $append); |
|
update document
|
775 | |
renamed build_query to creat...
|
776 |
Execute update statement to update all rows. |
777 |
Arguments is same as C<update> method, |
|
778 |
except that C<update_all> don't have C<where> argument. |
|
779 |
Return value of C<update_all> is the count of affected rows. |
|
version 0.0901
|
780 | |
removed DESTROY method(not b...
|
781 |
B<Example:> |
update document
|
782 | |
removed register_format()
|
783 |
$dbi->update_all(table => 'books', |
784 |
param => {author => 'taro'}, |
|
785 |
filter => {author => 'encode_utf8'}); |
|
packaging one directory
|
786 | |
removed DBIx::Custom commit ...
|
787 |
=head2 C<delete> |
packaging one directory
|
788 | |
cleanup
|
789 |
$dbi->delete(table => $table, |
790 |
where => \%where, |
|
791 |
append => $append, |
|
792 |
filter => \%filter); |
|
bind_filter argument is chan...
|
793 | |
renamed build_query to creat...
|
794 |
Execute delete statement. |
795 |
C<delete> method have C<table>, C<where>, C<append>, and C<filter> arguments. |
|
796 |
C<table> is a table name. |
|
797 |
C<where> is where clause. this must be hash reference. |
|
798 |
C<append> is a string added at the end of the SQL statement. |
|
799 |
C<filter> is filters when parameter binding is executed. |
|
800 |
Return value of C<delete> is the count of affected rows. |
|
801 | ||
removed DESTROY method(not b...
|
802 |
B<Example:> |
packaging one directory
|
803 | |
removed register_format()
|
804 |
$dbi->delete(table => 'books', |
805 |
where => {id => 5}, |
|
806 |
append => 'some statement', |
|
removed reconnect method
|
807 |
filter => {id => 'encode_utf8'}); |
version 0.0901
|
808 | |
removed DBIx::Custom commit ...
|
809 |
=head2 C<delete_all> |
packaging one directory
|
810 | |
cleanup
|
811 |
$dbi->delete_all(table => $table); |
packaging one directory
|
812 | |
renamed build_query to creat...
|
813 |
Execute delete statement to delete all rows. |
814 |
Arguments is same as C<delete> method, |
|
815 |
except that C<delete_all> don't have C<where> argument. |
|
816 |
Return value of C<delete_all> is the count of affected rows. |
|
bind_filter argument is chan...
|
817 | |
removed DESTROY method(not b...
|
818 |
B<Example:> |
removed register_format()
|
819 |
|
removed reconnect method
|
820 |
$dbi->delete_all(table => 'books'); |
packaging one directory
|
821 | |
removed DBIx::Custom commit ...
|
822 |
=head2 C<select> |
packaging one directory
|
823 |
|
cleanup
|
824 |
my $result = $dbi->select(table => $table, |
825 |
column => [@column], |
|
826 |
where => \%where, |
|
827 |
append => $append, |
|
828 |
relation => \%relation, |
|
829 |
filter => \%filter); |
|
update document
|
830 | |
renamed build_query to creat...
|
831 |
Execute select statement. |
832 |
C<select> method have C<table>, C<column>, C<where>, C<append> |
|
833 |
C<relation> and C<filter> arguments. |
|
834 |
C<table> is a table name. |
|
835 |
C<where> is where clause. this must be hash reference |
|
836 |
or a string containing such tags as "{= title} or {= author}". |
|
837 |
C<append> is a string added at the end of the SQL statement. |
|
838 |
C<filter> is filters when parameter binding is executed. |
|
update document
|
839 | |
removed DESTROY method(not b...
|
840 |
B<Example:> |
update document
|
841 | |
added commit method
|
842 |
# select * from books; |
cleanup
|
843 |
my $result = $dbi->select(table => 'books'); |
packaging one directory
|
844 |
|
renamed build_query to creat...
|
845 |
# select * from books where title = ?; |
846 |
my $result = $dbi->select(table => 'books', where => {title => 'Perl'}); |
|
update document
|
847 |
|
renamed build_query to creat...
|
848 |
# select title, author from books where id = ? for update; |
cleanup
|
849 |
my $result = $dbi->select( |
removed register_format()
|
850 |
table => 'books', |
removed reconnect method
|
851 |
column => ['title', 'author'], |
removed register_format()
|
852 |
where => {id => 1}, |
853 |
appned => 'for update' |
|
update document
|
854 |
); |
855 |
|
|
added commit method
|
856 |
# select books.name as book_name from books, rental |
857 |
# where books.id = rental.book_id; |
|
858 |
my $result = $dbi->select( |
|
removed reconnect method
|
859 |
table => ['books', 'rental'], |
860 |
column => ['books.name as book_name'] |
|
added commit method
|
861 |
relation => {'books.id' => 'rental.book_id'} |
update document
|
862 |
); |
863 | ||
renamed build_query to creat...
|
864 |
=head2 C<create_query> |
removed reconnect method
|
865 |
|
renamed build_query to creat...
|
866 |
my $query = $dbi->create_query( |
removed DBIx::Custom commit ...
|
867 |
"select * from authors where {= name} and {= age};" |
868 |
); |
|
869 | ||
renamed build_query to creat...
|
870 |
Create the instance of L<DBIx::Custom::Query> from SQL source. |
packaging one directory
|
871 | |
removed DBIx::Custom commit ...
|
872 |
=head2 C<execute> |
removed reconnect method
|
873 | |
cleanup
|
874 |
my $result = $dbi->execute($query, param => $params, filter => \%filter); |
875 |
my $result = $dbi->execute($source, param => $params, filter => \%filter); |
|
removed reconnect method
|
876 | |
renamed build_query to creat...
|
877 |
Execute query or SQL source. Query is L<DBIx::Csutom::Query> object. |
878 |
Return value is L<DBIx::Custom::Result> in select statement, |
|
879 |
or the count of affected rows in insert, update, delete statement. |
|
removed reconnect method
|
880 | |
removed DBIx::Custom commit ...
|
881 |
B<Example:> |
removed reconnect method
|
882 | |
cleanup
|
883 |
my $result = $dbi->execute("select * from authors where {= name} and {= age}", |
removed reconnect method
|
884 |
param => {name => 'taro', age => 19}); |
885 |
|
|
886 |
while (my $row = $result->fetch) { |
|
887 |
# do something |
|
888 |
} |
|
889 | ||
removed DBIx::Custom commit ...
|
890 |
=head2 C<register_filter> |
removed reconnect method
|
891 | |
892 |
$dbi->register_filter(%filters); |
|
removed DESTROY method(not b...
|
893 |
$dbi->register_filter(\%filters); |
removed reconnect method
|
894 |
|
renamed build_query to creat...
|
895 |
Register filter. Registered filters is available in the following methods |
896 |
or arguments. |
|
897 | ||
898 |
=over 4 |
|
899 | ||
900 |
=item * |
|
901 | ||
902 |
C<default_bind_filter()> |
|
903 | ||
904 |
=item * |
|
905 | ||
906 |
C<default_fetch_filter()> |
|
907 | ||
908 |
=item * |
|
909 | ||
910 |
C<filter> argument of C<insert()>, C<update()>, |
|
911 |
C<update_all()>, C<delete()>, C<delete_all()>, C<select()>, |
|
912 |
C<execute> method. |
|
913 | ||
914 |
=item * |
|
915 | ||
916 |
C<DBIx::Custom::Query::default_filter()> |
|
917 | ||
918 |
=item * |
|
919 | ||
920 |
C<DBIx::Csutom::Query::filter()> |
|
921 | ||
922 |
=item * |
|
923 | ||
924 |
C<DBIx::Custom::Result::default_filter()> |
|
925 | ||
926 |
=item * |
|
927 | ||
928 |
C<DBIx::Custom::Result::filter()> |
|
929 | ||
930 |
=back |
|
removed DBIx::Custom commit ...
|
931 | |
932 |
B<Example:> |
|
packaging one directory
|
933 | |
removed reconnect method
|
934 |
$dbi->register_filter( |
935 |
encode_utf8 => sub { |
|
936 |
my $value = shift; |
|
937 |
|
|
938 |
require Encode; |
|
939 |
|
|
940 |
return Encode::encode('UTF-8', $value); |
|
941 |
}, |
|
942 |
decode_utf8 => sub { |
|
943 |
my $value = shift; |
|
944 |
|
|
945 |
require Encode; |
|
946 |
|
|
947 |
return Encode::decode('UTF-8', $value) |
|
948 |
} |
|
949 |
); |
|
950 | ||
removed DESTROY method(not b...
|
951 |
=head1 BUGS |
952 | ||
renamed build_query to creat...
|
953 |
Please tell me bugs if found. |
removed DESTROY method(not b...
|
954 | |
955 |
C<< <kimoto.yuki at gmail.com> >> |
|
956 | ||
957 |
L<http://github.com/yuki-kimoto/DBIx-Custom> |
|
958 | ||
removed reconnect method
|
959 |
=head1 AUTHOR |
960 | ||
961 |
Yuki Kimoto, C<< <kimoto.yuki at gmail.com> >> |
|
version 0.0901
|
962 | |
packaging one directory
|
963 |
=head1 COPYRIGHT & LICENSE |
964 | ||
965 |
Copyright 2009 Yuki Kimoto, all rights reserved. |
|
966 | ||
967 |
This program is free software; you can redistribute it and/or modify it |
|
968 |
under the same terms as Perl itself. |
|
969 | ||
970 |
=cut |
|
added cache_method attribute
|
971 | |
972 |