cleanup
|
1 |
package DBIx::Custom; |
2 | ||
changed DBIx::Custom::Where ...
|
3 |
our $VERSION = '0.1634'; |
fixed DBIx::Custom::QueryBui...
|
4 | |
5 |
use 5.008001; |
|
cleanup
|
6 |
use strict; |
7 |
use warnings; |
|
8 | ||
remove run_transaction().
|
9 |
use base 'Object::Simple'; |
many change
|
10 | |
packaging one directory
|
11 |
use Carp 'croak'; |
12 |
use DBI; |
|
13 |
use DBIx::Custom::Result; |
|
cleanup
|
14 |
use DBIx::Custom::Query; |
cleanup
|
15 |
use DBIx::Custom::QueryBuilder; |
added experimental DBIx::Cus...
|
16 |
use DBIx::Custom::Where; |
update document
|
17 |
use Encode qw/encode_utf8 decode_utf8/; |
packaging one directory
|
18 | |
fix tests
|
19 |
__PACKAGE__->attr( |
added experimental DBIx::Cus...
|
20 |
[qw/data_source dbh password user/], |
21 |
dbi_options => sub { {} }, |
|
fix tests
|
22 |
cache => 1, |
23 |
filters => sub { |
|
24 |
{ |
|
25 |
encode_utf8 => sub { encode_utf8($_[0]) }, |
|
26 |
decode_utf8 => sub { decode_utf8($_[0]) } |
|
27 |
} |
|
28 |
}, |
|
29 |
|
|
30 |
filter_check => 1, |
|
31 |
query_builder => sub {DBIx::Custom::QueryBuilder->new}, |
|
32 |
result_class => 'DBIx::Custom::Result', |
|
33 |
table_class => 'DBIx::Custom::Table' |
|
34 |
); |
|
cleanup
|
35 | |
36 |
# DBI methods |
|
37 |
foreach my $method (qw/begin_work commit rollback/) { |
|
38 |
my $code = sub { |
|
39 |
my $self = shift; |
|
40 |
my $ret = eval {$self->dbh->$method}; |
|
41 |
croak $@ if $@; |
|
42 |
return $ret; |
|
43 |
}; |
|
44 |
no strict 'refs'; |
|
45 |
my $pkg = __PACKAGE__; |
|
46 |
*{"${pkg}::$method"} = $code; |
|
47 |
}; |
|
48 | ||
added helper method
|
49 |
our $AUTOLOAD; |
50 | ||
51 |
sub AUTOLOAD { |
|
52 |
my $self = shift; |
|
53 | ||
54 |
# Method |
|
55 |
my ($package, $method) = $AUTOLOAD =~ /^([\w\:]+)\:\:(\w+)$/; |
|
56 | ||
57 |
# Helper |
|
58 |
$self->{_helpers} ||= {}; |
|
59 |
croak qq/Can't locate object method "$method" via "$package"/ |
|
60 |
unless my $helper = $self->{_helpers}->{$method}; |
|
61 | ||
62 |
# Run |
|
63 |
return $self->$helper(@_); |
|
64 |
} |
|
65 | ||
renamed auto_filter to apply...
|
66 |
sub apply_filter { |
added auto_filter method
|
67 |
my $self = shift; |
68 |
|
|
cleanup
|
69 |
$self->{filter} ||= {}; |
cleanup
|
70 |
|
renamed auto_filter to apply...
|
71 |
# Table and column informations |
72 |
my ($table, @cs) = @_; |
|
added auto_filter method
|
73 |
|
renamed auto_filter to apply...
|
74 |
if (@cs) { |
added auto_filter method
|
75 |
|
cleanup
|
76 |
# Initialize filters |
cleanup
|
77 |
$self->{filter}{out} ||= {}; |
78 |
$self->{filter}{in} ||= {}; |
|
added auto_filter method
|
79 |
|
renamed auto_filter to apply...
|
80 |
# Create filters |
81 |
for (my $i = 0; $i < @cs; $i += 2) { |
|
cleanup
|
82 |
|
83 |
# Column |
|
renamed auto_filter to apply...
|
84 |
my $column = $cs[$i]; |
85 |
|
|
86 |
# Filter |
|
87 |
my $filter = $cs[$i + 1] || {}; |
|
88 |
my $in_filter = delete $filter->{in}; |
|
89 |
my $out_filter = delete $filter->{out}; |
|
90 |
croak "Usage \$dbi->apply_filter(" . |
|
91 |
"TABLE, COLUMN, {in => INFILTER, out => OUTFILTER}, ...)" |
|
92 |
if ref $filter ne 'HASH' || keys %$filter; |
|
cleanup
|
93 |
|
renamed auto_filter to apply...
|
94 |
# Out filter |
cleanup
|
95 |
if (ref $out_filter eq 'CODE') { |
cleanup
|
96 |
$self->{filter}{out}{$table}{$column} |
97 |
= $out_filter; |
|
98 |
$self->{filter}{out}{$table}{"$table.$column"} |
|
99 |
= $out_filter; |
|
cleanup
|
100 |
} |
renamed auto_filter to apply...
|
101 |
elsif (defined $out_filter) { |
cleanup
|
102 |
croak qq{"$out_filter" is not registered} |
103 |
unless exists $self->filters->{$out_filter}; |
|
104 |
|
|
105 |
$self->{filter}{out}{$table}{$column} |
|
106 |
= $self->filters->{$out_filter}; |
|
107 |
$self->{filter}{out}{$table}{"$table.$column"} |
|
108 |
= $self->filters->{$out_filter}; |
|
renamed auto_filter to apply...
|
109 |
} |
cleanup
|
110 |
|
renamed auto_filter to apply...
|
111 |
# In filter |
cleanup
|
112 |
if (ref $in_filter eq 'CODE') { |
cleanup
|
113 |
$self->{filter}{in}{$table}{$column} |
114 |
= $in_filter; |
|
115 |
$self->{filter}{in}{$table}{"$table.$column"} |
|
116 |
= $in_filter; |
|
cleanup
|
117 |
} |
renamed auto_filter to apply...
|
118 |
elsif (defined $in_filter) { |
cleanup
|
119 |
croak qq{"$in_filter" is not registered} |
120 |
unless exists $self->filters->{$in_filter}; |
|
cleanup
|
121 |
$self->{filter}{in}{$table}{$column} |
cleanup
|
122 |
= $self->filters->{$in_filter}; |
cleanup
|
123 |
$self->{filter}{in}{$table}{"$table.$column"} |
cleanup
|
124 |
= $self->filters->{$in_filter}; |
cleanup
|
125 |
} |
cleanup
|
126 |
} |
added auto_filter method
|
127 |
|
cleanup
|
128 |
return $self; |
added auto_filter method
|
129 |
} |
130 |
|
|
cleanup
|
131 |
return $self->{filter}; |
added auto_filter method
|
132 |
} |
133 | ||
added helper method
|
134 |
sub helper { |
135 |
my $self = shift; |
|
136 |
|
|
137 |
# Merge |
|
138 |
my $helpers = ref $_[0] eq 'HASH' ? $_[0] : {@_}; |
|
139 |
$self->{_helpers} = {%{$self->{_helpers} || {}}, %$helpers}; |
|
140 |
|
|
141 |
return $self; |
|
142 |
} |
|
143 | ||
packaging one directory
|
144 |
sub connect { |
removed register_format()
|
145 |
my $proto = shift; |
146 |
|
|
added experimental DBIx::Cus...
|
147 |
my $self; |
removed register_format()
|
148 |
# Create |
added experimental DBIx::Cus...
|
149 |
if (my $class = ref $proto) { |
150 |
my $args = ref $_[0] eq 'HASH' ? $_[0] : {@_}; |
|
151 |
$self = $proto; |
|
152 |
|
|
153 |
foreach my $attr (keys %$args) { |
|
154 |
$self->{$attr} = $args->{$attr}; |
|
155 |
} |
|
156 |
|
|
157 |
# Check attribute names |
|
158 |
my @attrs = keys %$self; |
|
159 |
foreach my $attr (@attrs) { |
|
160 |
croak qq{"$attr" is invalid attribute name} |
|
161 |
unless $self->can($attr); |
|
162 |
} |
|
163 |
} |
|
164 |
else { |
|
remove DBIx::Custom::Model
|
165 |
$self = $proto->SUPER::new(@_); |
added experimental DBIx::Cus...
|
166 |
} |
update document
|
167 |
|
168 |
# Information |
|
packaging one directory
|
169 |
my $data_source = $self->data_source; |
check arguments of connect m...
|
170 |
|
added experimental DBIx::Cus...
|
171 |
croak qq{"data_source" must be specified to connect method"} |
check arguments of connect m...
|
172 |
unless $data_source; |
173 |
|
|
packaging one directory
|
174 |
my $user = $self->user; |
175 |
my $password = $self->password; |
|
added dbi_options attribute
|
176 |
my $dbi_options = $self->dbi_options || {}; |
177 |
|
|
update document
|
178 |
# Connect |
select, insert, update, upda...
|
179 |
my $dbh = eval {DBI->connect( |
packaging one directory
|
180 |
$data_source, |
181 |
$user, |
|
182 |
$password, |
|
183 |
{ |
|
184 |
RaiseError => 1, |
|
185 |
PrintError => 0, |
|
186 |
AutoCommit => 1, |
|
added dbi_options attribute
|
187 |
%$dbi_options |
packaging one directory
|
188 |
} |
189 |
)}; |
|
190 |
|
|
update document
|
191 |
# Connect error |
packaging one directory
|
192 |
croak $@ if $@; |
193 |
|
|
update document
|
194 |
# Database handle |
packaging one directory
|
195 |
$self->dbh($dbh); |
update document
|
196 |
|
packaging one directory
|
197 |
return $self; |
198 |
} |
|
199 | ||
cleanup
|
200 |
sub create_query { |
201 |
my ($self, $source) = @_; |
|
update document
|
202 |
|
cleanup
|
203 |
# Cache |
204 |
my $cache = $self->cache; |
|
update document
|
205 |
|
cleanup
|
206 |
# Create query |
207 |
my $query; |
|
208 |
if ($cache) { |
|
209 |
|
|
210 |
# Get query |
|
211 |
my $q = $self->cache_method->($self, $source); |
|
212 |
|
|
213 |
# Create query |
|
214 |
$query = DBIx::Custom::Query->new($q) if $q; |
|
215 |
} |
|
216 |
|
|
217 |
unless ($query) { |
|
cleanup insert
|
218 | |
cleanup
|
219 |
# Create SQL object |
220 |
my $builder = $self->query_builder; |
|
221 |
|
|
222 |
# Create query |
|
223 |
$query = $builder->build_query($source); |
|
removed register_format()
|
224 | |
cleanup
|
225 |
# Cache query |
226 |
$self->cache_method->($self, $source, |
|
227 |
{sql => $query->sql, |
|
228 |
columns => $query->columns}) |
|
229 |
if $cache; |
|
cleanup insert
|
230 |
} |
231 |
|
|
cleanup
|
232 |
# Prepare statement handle |
233 |
my $sth; |
|
234 |
eval { $sth = $self->dbh->prepare($query->{sql})}; |
|
235 |
$self->_croak($@, qq{. SQL: "$query->{sql}"}) if $@; |
|
packaging one directory
|
236 |
|
cleanup
|
237 |
# Set statement handle |
238 |
$query->sth($sth); |
|
packaging one directory
|
239 |
|
cleanup
|
240 |
return $query; |
packaging one directory
|
241 |
} |
242 | ||
cleanup
|
243 |
our %VALID_DELETE_ARGS |
added experimental sugar met...
|
244 |
= map { $_ => 1 } qw/table where append filter allow_delete_all query/; |
cleanup update and update_al...
|
245 | |
cleanup
|
246 |
sub delete { |
select, insert, update, upda...
|
247 |
my ($self, %args) = @_; |
cleanup update and update_al...
|
248 |
|
249 |
# Check arguments |
|
select, insert, update, upda...
|
250 |
foreach my $name (keys %args) { |
add tests
|
251 |
croak qq{"$name" is invalid argument} |
cleanup
|
252 |
unless $VALID_DELETE_ARGS{$name}; |
cleanup update and update_al...
|
253 |
} |
254 |
|
|
255 |
# Arguments |
|
select, insert, update, upda...
|
256 |
my $table = $args{table} || ''; |
257 |
my $where = $args{where} || {}; |
|
cleanup
|
258 |
my $append = $args{append}; |
select, insert, update, upda...
|
259 |
my $filter = $args{filter}; |
cleanup
|
260 |
my $allow_delete_all = $args{allow_delete_all}; |
added auto_filter method
|
261 | |
packaging one directory
|
262 |
# Where keys |
removed register_format()
|
263 |
my @where_keys = keys %$where; |
packaging one directory
|
264 |
|
265 |
# Not exists where keys |
|
add tests
|
266 |
croak qq{"where" argument must be specified and } . |
267 |
qq{contains the pairs of column name and value} |
|
cleanup
|
268 |
if !@where_keys && !$allow_delete_all; |
packaging one directory
|
269 |
|
270 |
# Where clause |
|
271 |
my $where_clause = ''; |
|
272 |
if (@where_keys) { |
|
273 |
$where_clause = 'where '; |
|
add tests
|
274 |
$where_clause .= "{= $_} and " for @where_keys; |
packaging one directory
|
275 |
$where_clause =~ s/ and $//; |
276 |
} |
|
277 |
|
|
add tests
|
278 |
# Source of SQL |
cleanup
|
279 |
my $source = "delete from $table $where_clause"; |
add tests
|
280 |
$source .= " $append" if $append; |
packaging one directory
|
281 |
|
added experimental sugar met...
|
282 |
# Create query |
283 |
my $query = $self->create_query($source); |
|
284 |
return $query if $args{query}; |
|
285 |
|
|
packaging one directory
|
286 |
# Execute query |
added auto_filter method
|
287 |
my $ret_val = $self->execute( |
added experimental sugar met...
|
288 |
$query, param => $where, filter => $filter, |
renamed auto_filter to apply...
|
289 |
table => $table); |
packaging one directory
|
290 |
|
291 |
return $ret_val; |
|
292 |
} |
|
293 | ||
cleanup
|
294 |
sub delete_all { shift->delete(allow_delete_all => 1, @_) } |
packaging one directory
|
295 | |
added helper method
|
296 |
sub DESTROY { } |
297 | ||
renamed auto_filter to apply...
|
298 |
our %VALID_EXECUTE_ARGS = map { $_ => 1 } qw/param filter table/; |
refactoring delete and delet...
|
299 | |
cleanup
|
300 |
sub execute{ |
301 |
my ($self, $query, %args) = @_; |
|
refactoring delete and delet...
|
302 |
|
303 |
# Check arguments |
|
select, insert, update, upda...
|
304 |
foreach my $name (keys %args) { |
add tests
|
305 |
croak qq{"$name" is invalid argument} |
cleanup
|
306 |
unless $VALID_EXECUTE_ARGS{$name}; |
refactoring delete and delet...
|
307 |
} |
308 |
|
|
cleanup
|
309 |
my $params = $args{param} || {}; |
packaging one directory
|
310 |
|
cleanup
|
311 |
# First argument is the soruce of SQL |
312 |
$query = $self->create_query($query) |
|
313 |
unless ref $query; |
|
packaging one directory
|
314 |
|
added auto_filter method
|
315 |
# Auto filter |
cleanup
|
316 |
my $filter = {}; |
renamed auto_filter to apply...
|
317 |
my $tables = $args{table} || []; |
318 |
$tables = [$tables] |
|
319 |
unless ref $tables eq 'ARRAY'; |
|
320 |
foreach my $table (@$tables) { |
|
cleanup
|
321 |
$filter = { |
322 |
%$filter, |
|
323 |
%{$self->{filter}{out}->{$table} || {}} |
|
added auto_filter method
|
324 |
} |
325 |
} |
|
326 |
|
|
cleanup
|
327 |
# Filter argument |
328 |
my $f = $args{filter} || $query->filter || {}; |
|
329 |
foreach my $column (keys %$f) { |
|
330 |
my $fname = $f->{$column}; |
|
renamed auto_filter to apply...
|
331 |
if (!defined $fname) { |
cleanup
|
332 |
$f->{$column} = undef; |
renamed auto_filter to apply...
|
333 |
} |
334 |
elsif (ref $fname ne 'CODE') { |
|
cleanup
|
335 |
croak qq{"$fname" is not registered"} |
336 |
unless exists $self->filters->{$fname}; |
|
337 |
|
|
cleanup
|
338 |
$f->{$column} = $self->filters->{$fname}; |
cleanup
|
339 |
} |
340 |
} |
|
cleanup
|
341 |
$filter = {%$filter, %$f}; |
packaging one directory
|
342 |
|
cleanup
|
343 |
# Create bind values |
344 |
my $binds = $self->_build_binds($params, $query->columns, $filter); |
|
cleanup
|
345 |
|
346 |
# Execute |
|
347 |
my $sth = $query->sth; |
|
348 |
my $affected; |
|
cleanup
|
349 |
eval {$affected = $sth->execute(@$binds)}; |
cleanup
|
350 |
$self->_croak($@) if $@; |
351 |
|
|
352 |
# Return resultset if select statement is executed |
|
353 |
if ($sth->{NUM_OF_FIELDS}) { |
|
354 |
|
|
cleanup
|
355 |
# Auto in filter |
cleanup
|
356 |
my $in_filter = {}; |
357 |
foreach my $table (@$tables) { |
|
358 |
$in_filter = { |
|
359 |
%$in_filter, |
|
360 |
%{$self->{filter}{in}{$table} || {}} |
|
361 |
} |
|
362 |
} |
|
363 |
|
|
364 |
# Result |
|
365 |
my $result = $self->result_class->new( |
|
cleanup
|
366 |
sth => $sth, |
367 |
filters => $self->filters, |
|
368 |
filter_check => $self->filter_check, |
|
cleanup
|
369 |
default_filter => $self->{default_in_filter}, |
cleanup
|
370 |
filter => $in_filter || {} |
cleanup
|
371 |
); |
372 | ||
373 |
return $result; |
|
374 |
} |
|
375 |
return $affected; |
|
376 |
} |
|
377 | ||
added experimental expand me...
|
378 |
sub expand { |
379 |
my $self = shift; |
|
380 |
my $source = ref $_[0] eq 'HASH' ? $_[0] : {@_}; |
|
381 |
my $table = (keys %$source)[0]; |
|
382 |
my $param = $source->{$table}; |
|
383 |
|
|
384 |
# Expand table name |
|
385 |
my $expand = {}; |
|
386 |
foreach my $column (keys %$param) { |
|
387 |
$expand->{"$table.$column"} = $param->{$column}; |
|
388 |
} |
|
389 |
|
|
390 |
return %$expand; |
|
391 |
} |
|
392 | ||
added auto_filter method
|
393 |
our %VALID_INSERT_ARGS = map { $_ => 1 } qw/table param append |
added experimental sugar met...
|
394 |
filter query/; |
cleanup
|
395 |
sub insert { |
396 |
my ($self, %args) = @_; |
|
397 | ||
398 |
# Check arguments |
|
399 |
foreach my $name (keys %args) { |
|
400 |
croak qq{"$name" is invalid argument} |
|
401 |
unless $VALID_INSERT_ARGS{$name}; |
|
packaging one directory
|
402 |
} |
403 |
|
|
cleanup
|
404 |
# Arguments |
405 |
my $table = $args{table} || ''; |
|
406 |
my $param = $args{param} || {}; |
|
407 |
my $append = $args{append} || ''; |
|
408 |
my $filter = $args{filter}; |
|
409 |
|
|
410 |
# Insert keys |
|
411 |
my @insert_keys = keys %$param; |
|
412 |
|
|
413 |
# Templte for insert |
|
414 |
my $source = "insert into $table {insert_param " |
|
415 |
. join(' ', @insert_keys) . '}'; |
|
add tests
|
416 |
$source .= " $append" if $append; |
packaging one directory
|
417 |
|
added experimental sugar met...
|
418 |
# Create query |
419 |
my $query = $self->create_query($source); |
|
420 |
return $query if $args{query}; |
|
421 |
|
|
packaging one directory
|
422 |
# Execute query |
added auto_filter method
|
423 |
my $ret_val = $self->execute( |
added experimental sugar met...
|
424 |
$query, |
added auto_filter method
|
425 |
param => $param, |
426 |
filter => $filter, |
|
renamed auto_filter to apply...
|
427 |
table => $table |
added auto_filter method
|
428 |
); |
packaging one directory
|
429 |
|
430 |
return $ret_val; |
|
431 |
} |
|
432 | ||
added experimental iterate_a...
|
433 |
sub iterate_all_columns { |
434 |
my ($self, $cb) = @_; |
|
435 |
|
|
436 |
# Iterate all tables |
|
437 |
my $sth_tables = $self->dbh->table_info; |
|
438 |
while (my $table_info = $sth_tables->fetchrow_hashref) { |
|
439 |
|
|
440 |
# Table |
|
441 |
my $table = $table_info->{TABLE_NAME}; |
|
442 |
|
|
443 |
# Iterate all columns |
|
444 |
my $sth_columns = $self->dbh->column_info(undef, undef, $table, '%'); |
|
445 |
while (my $column_info = $sth_columns->fetchrow_hashref) { |
|
446 |
my $column = $column_info->{COLUMN_NAME}; |
|
447 |
$cb->($table, $column, $column_info); |
|
448 |
} |
|
449 |
} |
|
450 |
} |
|
451 | ||
added dbi_options attribute
|
452 |
sub new { |
453 |
my $self = shift->SUPER::new(@_); |
|
454 |
|
|
455 |
# Check attribute names |
|
456 |
my @attrs = keys %$self; |
|
457 |
foreach my $attr (@attrs) { |
|
458 |
croak qq{"$attr" is invalid attribute name} |
|
459 |
unless $self->can($attr); |
|
460 |
} |
|
461 |
|
|
462 |
return $self; |
|
463 |
} |
|
464 | ||
experimental extended select...
|
465 |
sub or { |
466 |
my $self = shift; |
|
467 |
my $values = ref $_[0] eq 'ARRAY' ? $_[0] : [@_]; |
|
468 |
return DBIx::Custom::Or->new(values => $values); |
|
469 |
} |
|
470 | ||
cleanup
|
471 |
sub register_filter { |
472 |
my $invocant = shift; |
|
473 |
|
|
474 |
# Register filter |
|
475 |
my $filters = ref $_[0] eq 'HASH' ? $_[0] : {@_}; |
|
476 |
$invocant->filters({%{$invocant->filters}, %$filters}); |
|
477 |
|
|
478 |
return $invocant; |
|
479 |
} |
|
packaging one directory
|
480 | |
refactoring select
|
481 |
our %VALID_SELECT_ARGS |
added experimental sugar met...
|
482 |
= map { $_ => 1 } qw/table column where append relation filter query/; |
refactoring select
|
483 | |
packaging one directory
|
484 |
sub select { |
select, insert, update, upda...
|
485 |
my ($self, %args) = @_; |
packaging one directory
|
486 |
|
refactoring select
|
487 |
# Check arguments |
select, insert, update, upda...
|
488 |
foreach my $name (keys %args) { |
add tests
|
489 |
croak qq{"$name" is invalid argument} |
refactoring select
|
490 |
unless $VALID_SELECT_ARGS{$name}; |
491 |
} |
|
packaging one directory
|
492 |
|
refactoring select
|
493 |
# Arguments |
select, insert, update, upda...
|
494 |
my $tables = $args{table} || []; |
removed register_format()
|
495 |
$tables = [$tables] unless ref $tables eq 'ARRAY'; |
select, insert, update, upda...
|
496 |
my $columns = $args{column} || []; |
update document
|
497 |
my $where = $args{where}; |
select, insert, update, upda...
|
498 |
my $relation = $args{relation}; |
499 |
my $append = $args{append}; |
|
500 |
my $filter = $args{filter}; |
|
packaging one directory
|
501 |
|
add tests
|
502 |
# Source of SQL |
renamed default_query_filter...
|
503 |
my $source = 'select '; |
packaging one directory
|
504 |
|
added commit method
|
505 |
# Column clause |
packaging one directory
|
506 |
if (@$columns) { |
507 |
foreach my $column (@$columns) { |
|
renamed default_query_filter...
|
508 |
$source .= "$column, "; |
packaging one directory
|
509 |
} |
renamed default_query_filter...
|
510 |
$source =~ s/, $/ /; |
packaging one directory
|
511 |
} |
512 |
else { |
|
renamed default_query_filter...
|
513 |
$source .= '* '; |
packaging one directory
|
514 |
} |
515 |
|
|
added commit method
|
516 |
# Table |
renamed default_query_filter...
|
517 |
$source .= 'from '; |
packaging one directory
|
518 |
foreach my $table (@$tables) { |
renamed default_query_filter...
|
519 |
$source .= "$table, "; |
packaging one directory
|
520 |
} |
renamed default_query_filter...
|
521 |
$source =~ s/, $/ /; |
packaging one directory
|
522 |
|
added commit method
|
523 |
# Where clause |
update document
|
524 |
my $param; |
fix select method empty wher...
|
525 |
my $wexists; |
added experimental DBIx::Cus...
|
526 |
if (ref $where eq 'HASH') { |
update document
|
527 |
$param = $where; |
fix select method empty wher...
|
528 |
$wexists = keys %$where; |
529 |
|
|
530 |
if ($wexists) { |
|
531 |
$source .= 'where ('; |
|
532 |
foreach my $where_key (keys %$where) { |
|
533 |
$source .= "{= $where_key} and "; |
|
534 |
} |
|
535 |
$source =~ s/ and $//; |
|
536 |
$source .= ') '; |
|
packaging one directory
|
537 |
} |
update document
|
538 |
} |
539 |
elsif (ref $where eq 'ARRAY') { |
|
fix select method empty wher...
|
540 |
my $w = $where->[0] || ''; |
update document
|
541 |
$param = $where->[1]; |
542 |
|
|
added experimental DBIx::Cus...
|
543 |
$wexists = $w =~ /\S/; |
544 |
$source .= "where ($w) " if $wexists; |
|
545 |
} |
|
546 |
elsif (ref $where eq 'DBIx::Custom::Where') { |
|
547 |
$param = $where->param; |
|
548 |
my $w = $where->to_string; |
|
549 |
$wexists = $w =~ /\S/; |
|
550 |
$source .= $w; |
|
packaging one directory
|
551 |
} |
552 |
|
|
added commit method
|
553 |
# Relation |
554 |
if ($relation) { |
|
fix select method empty wher...
|
555 |
$source .= $wexists ? "and " : "where "; |
added commit method
|
556 |
foreach my $rkey (keys %$relation) { |
renamed default_query_filter...
|
557 |
$source .= "$rkey = " . $relation->{$rkey} . " and "; |
packaging one directory
|
558 |
} |
559 |
} |
|
renamed default_query_filter...
|
560 |
$source =~ s/ and $//; |
added commit method
|
561 |
|
562 |
# Append some statement |
|
renamed default_query_filter...
|
563 |
$source .= " $append" if $append; |
packaging one directory
|
564 |
|
added experimental sugar met...
|
565 |
# Create query |
566 |
my $query = $self->create_query($source); |
|
567 |
return $query if $args{query}; |
|
568 |
|
|
packaging one directory
|
569 |
# Execute query |
added auto_filter method
|
570 |
my $result = $self->execute( |
added experimental sugar met...
|
571 |
$query, param => $param, filter => $filter, |
renamed auto_filter to apply...
|
572 |
table => $tables); |
packaging one directory
|
573 |
|
574 |
return $result; |
|
575 |
} |
|
576 | ||
remove DBIx::Custom::Model
|
577 |
sub table { |
578 |
my $self = shift; |
|
579 |
my $name = shift; |
|
580 |
|
|
581 |
# Table class |
|
582 |
my $table_class = $self->table_class; |
|
583 |
croak qq{Invalid table class name "$table_class"} |
|
584 |
unless $table_class =~ /^[\w:]+$/; |
|
585 |
unless ($table_class->can('isa')) { |
|
586 |
eval "require $table_class"; |
|
587 |
croak $@ if $@; |
|
588 |
} |
|
589 |
# Create table |
|
590 |
$self->{_tables} ||= {}; |
|
591 |
$self->{_tables}->{$name} |
|
592 |
= $table_class->new(name => $name, dbi => $self) |
|
593 |
unless defined $self->{_tables}->{$name}; |
|
594 |
|
|
595 |
# Helper |
|
596 |
$self->{_tables}->{$name}->helper(@_) if @_; |
|
597 |
|
|
598 |
return $self->{_tables}{$name}; |
|
599 |
} |
|
600 | ||
added insert, update, update...
|
601 |
sub txn_scope { |
602 |
my $self = shift; |
|
603 |
|
|
604 |
require DBIx::TransactionManager; |
|
605 |
|
|
606 |
$self->{_transaction_manager} |
|
607 |
||= DBIx::TransactionManager->new($self->dbh); |
|
608 |
|
|
609 |
return $self->{_transaction_manager}->txn_scope; |
|
610 |
} |
|
611 | ||
cleanup
|
612 |
our %VALID_UPDATE_ARGS |
renamed auto_filter to apply...
|
613 |
= map { $_ => 1 } qw/table param |
added experimental sugar met...
|
614 |
where append filter allow_update_all query/; |
cleanup
|
615 | |
616 |
sub update { |
|
617 |
my ($self, %args) = @_; |
|
version 0.0901
|
618 |
|
cleanup
|
619 |
# Check arguments |
620 |
foreach my $name (keys %args) { |
|
621 |
croak qq{"$name" is invalid argument} |
|
622 |
unless $VALID_UPDATE_ARGS{$name}; |
|
removed reconnect method
|
623 |
} |
added cache_method attribute
|
624 |
|
cleanup
|
625 |
# Arguments |
626 |
my $table = $args{table} || ''; |
|
627 |
my $param = $args{param} || {}; |
|
628 |
my $where = $args{where} || {}; |
|
629 |
my $append = $args{append} || ''; |
|
630 |
my $filter = $args{filter}; |
|
631 |
my $allow_update_all = $args{allow_update_all}; |
|
version 0.0901
|
632 |
|
cleanup
|
633 |
# Update keys |
634 |
my @update_keys = keys %$param; |
|
renamed fetch_rows to fetch_...
|
635 |
|
cleanup
|
636 |
# Where keys |
637 |
my @where_keys = keys %$where; |
|
removed reconnect method
|
638 |
|
cleanup
|
639 |
# Not exists where keys |
640 |
croak qq{"where" argument must be specified and } . |
|
641 |
qq{contains the pairs of column name and value} |
|
642 |
if !@where_keys && !$allow_update_all; |
|
removed experimental registe...
|
643 |
|
cleanup
|
644 |
# Update clause |
645 |
my $update_clause = '{update_param ' . join(' ', @update_keys) . '}'; |
|
removed experimental registe...
|
646 |
|
cleanup
|
647 |
# Where clause |
648 |
my $where_clause = ''; |
|
649 |
my $new_where = {}; |
|
removed reconnect method
|
650 |
|
cleanup
|
651 |
if (@where_keys) { |
652 |
$where_clause = 'where '; |
|
653 |
$where_clause .= "{= $_} and " for @where_keys; |
|
654 |
$where_clause =~ s/ and $//; |
|
removed reconnect method
|
655 |
} |
656 |
|
|
cleanup
|
657 |
# Source of SQL |
658 |
my $source = "update $table $update_clause $where_clause"; |
|
659 |
$source .= " $append" if $append; |
|
removed reconnect method
|
660 |
|
cleanup
|
661 |
# Rearrange parameters |
662 |
foreach my $wkey (@where_keys) { |
|
removed reconnect method
|
663 |
|
cleanup
|
664 |
if (exists $param->{$wkey}) { |
665 |
$param->{$wkey} = [$param->{$wkey}] |
|
666 |
unless ref $param->{$wkey} eq 'ARRAY'; |
|
667 |
|
|
668 |
push @{$param->{$wkey}}, $where->{$wkey}; |
|
669 |
} |
|
670 |
else { |
|
671 |
$param->{$wkey} = $where->{$wkey}; |
|
672 |
} |
|
removed reconnect method
|
673 |
} |
cleanup
|
674 |
|
added experimental sugar met...
|
675 |
# Create query |
676 |
my $query = $self->create_query($source); |
|
677 |
return $query if $args{query}; |
|
678 |
|
|
cleanup
|
679 |
# Execute query |
added experimental sugar met...
|
680 |
my $ret_val = $self->execute($query, param => $param, |
added auto_filter method
|
681 |
filter => $filter, |
renamed auto_filter to apply...
|
682 |
table => $table); |
cleanup
|
683 |
|
684 |
return $ret_val; |
|
removed reconnect method
|
685 |
} |
686 | ||
cleanup
|
687 |
sub update_all { shift->update(allow_update_all => 1, @_) }; |
688 | ||
added test
|
689 |
sub where { DBIx::Custom::Where->new( |
690 |
query_builder => shift->query_builder) } |
|
added experimental DBIx::Cus...
|
691 | |
cleanup
|
692 |
sub _build_binds { |
693 |
my ($self, $params, $columns, $filter) = @_; |
|
removed reconnect method
|
694 |
|
cleanup
|
695 |
# bind values |
696 |
my @binds; |
|
add tests
|
697 |
|
removed reconnect method
|
698 |
# Build bind values |
699 |
my $count = {}; |
|
cleanup
|
700 |
foreach my $column (@$columns) { |
removed reconnect method
|
701 |
|
702 |
# Value |
|
703 |
my $value = ref $params->{$column} eq 'ARRAY' |
|
704 |
? $params->{$column}->[$count->{$column} || 0] |
|
705 |
: $params->{$column}; |
|
706 |
|
|
cleanup
|
707 |
# Filter |
708 |
my $f = $filter->{$column} || $self->{default_out_filter} || ''; |
|
cleanup
|
709 |
|
cleanup
|
710 |
push @binds, $f ? $f->($value) : $value; |
removed reconnect method
|
711 |
|
712 |
# Count up |
|
713 |
$count->{$column}++; |
|
714 |
} |
|
715 |
|
|
cleanup
|
716 |
return \@binds; |
removed reconnect method
|
717 |
} |
718 | ||
cleanup
|
719 |
sub _croak { |
720 |
my ($self, $error, $append) = @_; |
|
721 |
$append ||= ""; |
|
722 |
|
|
723 |
# Verbose |
|
724 |
if ($Carp::Verbose) { croak $error } |
|
725 |
|
|
726 |
# Not verbose |
|
727 |
else { |
|
728 |
|
|
729 |
# Remove line and module infromation |
|
730 |
my $at_pos = rindex($error, ' at '); |
|
731 |
$error = substr($error, 0, $at_pos); |
|
732 |
$error =~ s/\s+$//; |
|
733 |
|
|
734 |
croak "$error$append"; |
|
735 |
} |
|
736 |
} |
|
737 | ||
cleanup
|
738 |
# Deprecated |
739 |
__PACKAGE__->attr(cache_method => sub { |
|
740 |
sub { |
|
741 |
my $self = shift; |
|
742 |
|
|
743 |
$self->{_cached} ||= {}; |
|
744 |
|
|
745 |
if (@_ > 1) { |
|
746 |
$self->{_cached}{$_[0]} = $_[1] |
|
747 |
} |
|
748 |
else { |
|
749 |
return $self->{_cached}{$_[0]} |
|
750 |
} |
|
751 |
} |
|
752 |
}); |
|
753 | ||
754 |
sub default_bind_filter { |
|
755 |
my $self = shift; |
|
756 |
|
|
757 |
if (@_) { |
|
758 |
my $fname = $_[0]; |
|
759 |
|
|
760 |
if (@_ && !$fname) { |
|
761 |
$self->{default_out_filter} = undef; |
|
762 |
} |
|
763 |
else { |
|
764 |
croak qq{"$fname" is not registered} |
|
765 |
unless exists $self->filters->{$fname}; |
|
766 |
|
|
767 |
$self->{default_out_filter} = $self->filters->{$fname}; |
|
768 |
} |
|
769 |
return $self; |
|
770 |
} |
|
771 |
|
|
772 |
return $self->{default_out_filter}; |
|
773 |
} |
|
774 | ||
775 |
sub default_fetch_filter { |
|
776 |
my $self = shift; |
|
777 |
my $fname = $_[0]; |
|
778 |
|
|
779 |
if (@_) { |
|
780 |
if (@_ && !$fname) { |
|
781 |
$self->{default_in_filter} = undef; |
|
782 |
} |
|
783 |
else { |
|
784 |
croak qq{"$fname" is not registered} |
|
785 |
unless exists $self->filters->{$fname}; |
|
786 |
|
|
787 |
$self->{default_in_filter} = $self->filters->{$fname}; |
|
788 |
} |
|
789 |
|
|
790 |
return $self; |
|
791 |
} |
|
792 |
|
|
793 |
return $self->{default_in_filter} |
|
794 |
} |
|
795 | ||
fixed DBIx::Custom::QueryBui...
|
796 |
1; |
797 | ||
removed reconnect method
|
798 |
=head1 NAME |
799 | ||
renamed build_query to creat...
|
800 |
DBIx::Custom - DBI interface, having hash parameter binding and filtering system |
removed reconnect method
|
801 | |
802 |
=head1 SYNOPSYS |
|
cleanup
|
803 | |
renamed build_query to creat...
|
804 |
Connect to the database. |
805 |
|
|
806 |
use DBIx::Custom; |
|
renamed update tag to update...
|
807 |
my $dbi = DBIx::Custom->connect(data_source => "dbi:mysql:database=dbname", |
removed reconnect method
|
808 |
user => 'ken', password => '!LFKD%$&'); |
cleanup
|
809 | |
renamed build_query to creat...
|
810 |
Insert, update, and delete |
cleanup
|
811 | |
removed reconnect method
|
812 |
# Insert |
added insert, update, update...
|
813 |
$dbi->insert(table => 'book', |
renamed update tag to update...
|
814 |
param => {title => 'Perl', author => 'Ken'}, |
removed reconnect method
|
815 |
filter => {title => 'encode_utf8'}); |
816 |
|
|
817 |
# Update |
|
added insert, update, update...
|
818 |
$dbi->update(table => 'book', |
renamed update tag to update...
|
819 |
param => {title => 'Perl', author => 'Ken'}, |
removed reconnect method
|
820 |
where => {id => 5}, |
821 |
filter => {title => 'encode_utf8'}); |
|
822 |
|
|
823 |
# Update all |
|
added insert, update, update...
|
824 |
$dbi->update_all(table => 'book', |
renamed update tag to update...
|
825 |
param => {title => 'Perl'}, |
removed reconnect method
|
826 |
filter => {title => 'encode_utf8'}); |
827 |
|
|
828 |
# Delete |
|
added insert, update, update...
|
829 |
$dbi->delete(table => 'book', |
removed reconnect method
|
830 |
where => {author => 'Ken'}, |
831 |
filter => {title => 'encode_utf8'}); |
|
832 |
|
|
833 |
# Delete all |
|
added insert, update, update...
|
834 |
$dbi->delete_all(table => 'book'); |
cleanup
|
835 | |
renamed build_query to creat...
|
836 |
Select |
cleanup
|
837 | |
removed reconnect method
|
838 |
# Select |
added insert, update, update...
|
839 |
my $result = $dbi->select(table => 'book'); |
renamed fetch_rows to fetch_...
|
840 |
|
renamed build_query to creat...
|
841 |
# Select, more complex |
renamed fetch_rows to fetch_...
|
842 |
my $result = $dbi->select( |
added insert, update, update...
|
843 |
table => 'book', |
update document
|
844 |
column => [qw/author title/], |
845 |
where => {author => 'Ken'}, |
|
updated document
|
846 |
append => 'order by id limit 5', |
renamed build_query to creat...
|
847 |
filter => {title => 'encode_utf8'} |
renamed fetch_rows to fetch_...
|
848 |
); |
added commit method
|
849 |
|
renamed build_query to creat...
|
850 |
# Select, join table |
added commit method
|
851 |
my $result = $dbi->select( |
added insert, update, update...
|
852 |
table => ['book', 'rental'], |
853 |
column => ['book.name as book_name'] |
|
854 |
relation => {'book.id' => 'rental.book_id'} |
|
added commit method
|
855 |
); |
updated document
|
856 |
|
857 |
# Select, more flexible where |
|
858 |
my $result = $dbi->select( |
|
added insert, update, update...
|
859 |
table => 'book', |
updated document
|
860 |
where => ['{= author} and {like title}', |
861 |
{author => 'Ken', title => '%Perl%'}] |
|
862 |
); |
|
cleanup
|
863 | |
renamed build_query to creat...
|
864 |
Execute SQL |
cleanup
|
865 | |
renamed build_query to creat...
|
866 |
# Execute SQL |
added insert, update, update...
|
867 |
$dbi->execute("select title from book"); |
removed register_format()
|
868 |
|
renamed build_query to creat...
|
869 |
# Execute SQL with hash binding and filtering |
added insert, update, update...
|
870 |
$dbi->execute("select id from book where {= author} and {like title}", |
removed register_format()
|
871 |
param => {author => 'ken', title => '%Perl%'}, |
renamed build_query to creat...
|
872 |
filter => {title => 'encode_utf8'}); |
removed reconnect method
|
873 | |
874 |
# Create query and execute it |
|
renamed build_query to creat...
|
875 |
my $query = $dbi->create_query( |
added insert, update, update...
|
876 |
"select id from book where {= author} and {like title}" |
removed reconnect method
|
877 |
); |
updated document
|
878 |
$dbi->execute($query, param => {author => 'Ken', title => '%Perl%'}) |
cleanup
|
879 | |
updated document
|
880 |
Other features. |
cleanup
|
881 | |
882 |
# Get DBI object |
|
883 |
my $dbh = $dbi->dbh; |
|
884 | ||
885 |
Fetch row. |
|
886 | ||
removed register_format()
|
887 |
# Fetch |
888 |
while (my $row = $result->fetch) { |
|
889 |
# ... |
|
890 |
} |
|
891 |
|
|
892 |
# Fetch hash |
|
893 |
while (my $row = $result->fetch_hash) { |
|
894 |
|
|
895 |
} |
|
896 |
|
|
renamed update tag to update...
|
897 |
=head1 DESCRIPTIONS |
removed reconnect method
|
898 | |
renamed build_query to creat...
|
899 |
L<DBIx::Custom> is one of L<DBI> interface modules, |
900 |
such as L<DBIx::Class>, L<DBIx::Simple>. |
|
removed reconnect method
|
901 | |
renamed build_query to creat...
|
902 |
This module is not O/R mapper. O/R mapper is useful, |
903 |
but you must learn many syntax of the O/R mapper, |
|
updated document
|
904 |
which is almost another language. |
905 |
Created SQL statement is offten not effcient and damage SQL performance. |
|
renamed build_query to creat...
|
906 |
so you have to execute raw SQL in the end. |
removed reconnect method
|
907 | |
renamed build_query to creat...
|
908 |
L<DBIx::Custom> is middle area between L<DBI> and O/R mapper. |
updated document
|
909 |
L<DBIx::Custom> provide flexible hash parameter binding and filtering system, |
added experimental expand me...
|
910 |
and suger methods, such as C<insert()>, C<update()>, C<delete()>, C<select()> |
updated document
|
911 |
to execute SQL easily. |
removed reconnect method
|
912 | |
updated document
|
913 |
L<DBIx::Custom> respects SQL. SQL is very complex and not beautiful, |
914 |
but de-facto standard, |
|
915 |
so all people learing database know it. |
|
renamed update tag to update...
|
916 |
If you already know SQL, |
917 |
you learn a little thing to use L<DBIx::Custom>. |
|
removed reconnect method
|
918 | |
added DBIx::Custom::Guides
|
919 |
See L<DBIx::Custom::Guides> for more details. |
updated document
|
920 | |
update document
|
921 |
=head1 ATTRIBUTES |
packaging one directory
|
922 | |
cleanup
|
923 |
=head2 C<cache> |
packaging one directory
|
924 | |
cleanup
|
925 |
my $cache = $dbi->cache; |
926 |
$dbi = $dbi->cache(1); |
|
removed DESTROY method(not b...
|
927 | |
cleanup
|
928 |
Enable parsed L<DBIx::Custom::Query> object caching. |
929 |
Default to 1. |
|
packaging one directory
|
930 | |
removed DBIx::Custom commit ...
|
931 |
=head2 C<data_source> |
packaging one directory
|
932 | |
cleanup
|
933 |
my $data_source = $dbi->data_source; |
cleanup
|
934 |
$dbi = $dbi->data_source("DBI:mysql:database=dbname"); |
removed DESTROY method(not b...
|
935 | |
cleanup
|
936 |
Data source. |
937 |
C<connect()> method use this value to connect the database. |
|
removed DESTROY method(not b...
|
938 | |
removed DBIx::Custom commit ...
|
939 |
=head2 C<dbh> |
packaging one directory
|
940 | |
cleanup
|
941 |
my $dbh = $dbi->dbh; |
942 |
$dbi = $dbi->dbh($dbh); |
|
packaging one directory
|
943 | |
cleanup
|
944 |
L<DBI> object. You can call all methods of L<DBI>. |
packaging one directory
|
945 | |
added dbi_options attribute
|
946 |
=head2 C<dbi_options> |
947 | ||
948 |
my $dbi_options = $dbi->dbi_options; |
|
949 |
$dbi = $dbi->dbi_options($dbi_options); |
|
950 | ||
951 |
DBI options. |
|
952 |
C<connect()> method use this value to connect the database. |
|
953 | ||
cleanup
|
954 |
Default filter when row is fetched. |
packaging one directory
|
955 | |
cleanup
|
956 |
=head2 C<filters> |
bind_filter argument is chan...
|
957 | |
cleanup
|
958 |
my $filters = $dbi->filters; |
959 |
$dbi = $dbi->filters(\%filters); |
|
packaging one directory
|
960 | |
cleanup
|
961 |
Filter functions. |
962 |
"encode_utf8" and "decode_utf8" is registered by default. |
|
963 | ||
964 |
=head2 C<filter_check> |
|
965 | ||
966 |
my $filter_check = $dbi->filter_check; |
|
967 |
$dbi = $dbi->filter_check(0); |
|
968 | ||
cleanup
|
969 |
B<this attribute is now deprecated and has no mean |
970 |
because check is always done>. |
|
cleanup
|
971 | |
972 |
=head2 C<password> |
|
973 | ||
974 |
my $password = $dbi->password; |
|
975 |
$dbi = $dbi->password('lkj&le`@s'); |
|
976 | ||
977 |
Password. |
|
978 |
C<connect()> method use this value to connect the database. |
|
update document
|
979 | |
renamed update tag to update...
|
980 |
=head2 C<query_builder> |
added commit method
|
981 | |
renamed update tag to update...
|
982 |
my $sql_class = $dbi->query_builder; |
983 |
$dbi = $dbi->query_builder(DBIx::Custom::QueryBuilder->new); |
|
added commit method
|
984 | |
renamed update tag to update...
|
985 |
SQL builder. C<query_builder()> must be |
renamed build_query to creat...
|
986 |
the instance of L<DBIx::Custom::QueryBuilder> subclass. |
987 |
Default to L<DBIx::Custom::QueryBuilder> object. |
|
cleanup
|
988 | |
cleanup
|
989 |
=head2 C<result_class> |
cleanup
|
990 | |
cleanup
|
991 |
my $result_class = $dbi->result_class; |
992 |
$dbi = $dbi->result_class('DBIx::Custom::Result'); |
|
cleanup
|
993 | |
cleanup
|
994 |
Result class for select statement. |
995 |
Default to L<DBIx::Custom::Result>. |
|
cleanup
|
996 | |
cleanup
|
997 |
=head2 C<user> |
cleanup
|
998 | |
cleanup
|
999 |
my $user = $dbi->user; |
1000 |
$dbi = $dbi->user('Ken'); |
|
cleanup
|
1001 | |
cleanup
|
1002 |
User name. |
1003 |
C<connect()> method use this value to connect the database. |
|
1004 |
|
|
1005 |
=head1 METHODS |
|
added commit method
|
1006 | |
cleanup
|
1007 |
L<DBIx::Custom> inherits all methods from L<Object::Simple> |
1008 |
and implements the following new ones. |
|
added check_filter attribute
|
1009 | |
renamed auto_filter to apply...
|
1010 |
=head2 C<(experimental) apply_filter > |
added auto_filter method
|
1011 | |
renamed auto_filter to apply...
|
1012 |
$dbi->apply_filter( |
added auto_filter method
|
1013 |
$table, |
renamed auto_filter to apply...
|
1014 |
$column1 => {in => $infilter1, out => $outfilter1} |
1015 |
$column2 => {in => $infilter2, out => $outfilter2} |
|
1016 |
..., |
|
added auto_filter method
|
1017 |
); |
1018 | ||
renamed auto_filter to apply...
|
1019 |
C<apply_filter> is automatically filter for columns of table. |
added auto_filter method
|
1020 |
This have effect C<insert>, C<update>, C<delete>. C<select> |
cleanup
|
1021 |
and L<DBIx::Custom::Result> object. but this has'nt C<execute> method. |
1022 | ||
cleanup
|
1023 |
If you want to have effect C<execute()> method, use C<table> |
cleanup
|
1024 |
arguments. |
added auto_filter method
|
1025 | |
cleanup
|
1026 |
$result = $dbi->execute( |
1027 |
"select * from table1 where {= key1} and {= key2};", |
|
1028 |
param => {key1 => 1, key2 => 2}, |
|
renamed auto_filter to apply...
|
1029 |
table => ['table1'] |
cleanup
|
1030 |
); |
1031 |
|
|
added auto_filter method
|
1032 |
=head2 C<begin_work> |
added check_filter attribute
|
1033 | |
cleanup
|
1034 |
$dbi->begin_work; |
added check_filter attribute
|
1035 | |
cleanup
|
1036 |
Start transaction. |
1037 |
This is same as L<DBI>'s C<begin_work>. |
|
added commit method
|
1038 | |
cleanup
|
1039 |
L<DBIx::Custom> inherits all methods from L<Object::Simple> |
1040 |
and implements the following new ones. |
|
added commit method
|
1041 | |
added auto_filter method
|
1042 |
=head2 C<commit> |
cleanup
|
1043 | |
1044 |
$dbi->commit; |
|
1045 | ||
1046 |
Commit transaction. |
|
1047 |
This is same as L<DBI>'s C<commit>. |
|
1048 | ||
removed DBIx::Custom commit ...
|
1049 |
=head2 C<connect> |
packaging one directory
|
1050 | |
cleanup
|
1051 |
my $dbi = DBIx::Custom->connect(data_source => "dbi:mysql:database=dbname", |
update document
|
1052 |
user => 'ken', password => '!LFKD%$&'); |
bind_filter argument is chan...
|
1053 | |
cleanup
|
1054 |
Create a new L<DBIx::Custom> object and connect to the database. |
renamed build_query to creat...
|
1055 |
L<DBIx::Custom> is a wrapper of L<DBI>. |
cleanup
|
1056 |
C<AutoCommit> and C<RaiseError> options are true, |
renamed build_query to creat...
|
1057 |
and C<PrintError> option is false by default. |
packaging one directory
|
1058 | |
cleanup
|
1059 |
=head2 C<create_query> |
1060 |
|
|
1061 |
my $query = $dbi->create_query( |
|
added insert, update, update...
|
1062 |
"select * from book where {= author} and {like title};" |
cleanup
|
1063 |
); |
update document
|
1064 | |
cleanup
|
1065 |
Create the instance of L<DBIx::Custom::Query> from the source of SQL. |
1066 |
If you want to get high performance, |
|
1067 |
use C<create_query()> method and execute it by C<execute()> method |
|
1068 |
instead of suger methods. |
|
bind_filter argument is chan...
|
1069 | |
cleanup
|
1070 |
$dbi->execute($query, {author => 'Ken', title => '%Perl%'}); |
version 0.0901
|
1071 | |
cleanup
|
1072 |
=head2 C<execute> |
packaging one directory
|
1073 | |
cleanup
|
1074 |
my $result = $dbi->execute($query, param => $params, filter => \%filter); |
1075 |
my $result = $dbi->execute($source, param => $params, filter => \%filter); |
|
update document
|
1076 | |
cleanup
|
1077 |
Execute query or the source of SQL. |
1078 |
Query is L<DBIx::Custom::Query> object. |
|
1079 |
Return value is L<DBIx::Custom::Result> if select statement is executed, |
|
1080 |
or the count of affected rows if insert, update, delete statement is executed. |
|
version 0.0901
|
1081 | |
removed DESTROY method(not b...
|
1082 |
B<Example:> |
update document
|
1083 | |
cleanup
|
1084 |
my $result = $dbi->execute( |
added insert, update, update...
|
1085 |
"select * from book where {= author} and {like title}", |
cleanup
|
1086 |
param => {author => 'Ken', title => '%Perl%'} |
1087 |
); |
|
1088 |
|
|
1089 |
while (my $row = $result->fetch) { |
|
1090 |
my $author = $row->[0]; |
|
1091 |
my $title = $row->[1]; |
|
1092 |
} |
|
packaging one directory
|
1093 | |
added experimental expand me...
|
1094 |
=head2 C<(experimental) expand> |
1095 | ||
1096 |
my %expand = $dbi->expand($source); |
|
1097 | ||
1098 |
The following hash |
|
1099 | ||
added insert, update, update...
|
1100 |
{book => {title => 'Perl', author => 'Ken'}} |
added experimental expand me...
|
1101 | |
1102 |
is expanded to |
|
1103 | ||
added insert, update, update...
|
1104 |
('book.title' => 'Perl', 'book.author' => 'Ken') |
added experimental expand me...
|
1105 | |
1106 |
This is used in C<select()> |
|
1107 | ||
1108 | ||
1109 |
|
|
removed DBIx::Custom commit ...
|
1110 |
=head2 C<delete> |
packaging one directory
|
1111 | |
cleanup
|
1112 |
$dbi->delete(table => $table, |
1113 |
where => \%where, |
|
1114 |
append => $append, |
|
added experimental sugar met...
|
1115 |
filter => \%filter, |
1116 |
query => 1); |
|
bind_filter argument is chan...
|
1117 | |
renamed build_query to creat...
|
1118 |
Execute delete statement. |
1119 |
C<delete> method have C<table>, C<where>, C<append>, and C<filter> arguments. |
|
1120 |
C<table> is a table name. |
|
1121 |
C<where> is where clause. this must be hash reference. |
|
1122 |
C<append> is a string added at the end of the SQL statement. |
|
1123 |
C<filter> is filters when parameter binding is executed. |
|
added experimental sugar met...
|
1124 |
C<query> is if you don't execute sql and get L<DBIx::Custom::Query> object as return value. |
1125 |
default to 0. This is experimental. |
|
cleanup
|
1126 |
Return value of C<delete()> is the count of affected rows. |
renamed build_query to creat...
|
1127 | |
removed DESTROY method(not b...
|
1128 |
B<Example:> |
packaging one directory
|
1129 | |
added insert, update, update...
|
1130 |
$dbi->delete(table => 'book', |
removed register_format()
|
1131 |
where => {id => 5}, |
1132 |
append => 'some statement', |
|
removed reconnect method
|
1133 |
filter => {id => 'encode_utf8'}); |
version 0.0901
|
1134 | |
removed DBIx::Custom commit ...
|
1135 |
=head2 C<delete_all> |
packaging one directory
|
1136 | |
cleanup
|
1137 |
$dbi->delete_all(table => $table); |
packaging one directory
|
1138 | |
renamed build_query to creat...
|
1139 |
Execute delete statement to delete all rows. |
1140 |
Arguments is same as C<delete> method, |
|
1141 |
except that C<delete_all> don't have C<where> argument. |
|
cleanup
|
1142 |
Return value of C<delete_all()> is the count of affected rows. |
bind_filter argument is chan...
|
1143 | |
removed DESTROY method(not b...
|
1144 |
B<Example:> |
removed register_format()
|
1145 |
|
added insert, update, update...
|
1146 |
$dbi->delete_all(table => 'book'); |
packaging one directory
|
1147 | |
added helper method
|
1148 |
=head2 C<(experimental) helper> |
1149 | ||
1150 |
$dbi->helper( |
|
1151 |
update_or_insert => sub { |
|
1152 |
my $self = shift; |
|
1153 |
# do something |
|
1154 |
}, |
|
1155 |
find_or_create => sub { |
|
1156 |
my $self = shift; |
|
1157 |
# do something |
|
1158 |
} |
|
1159 |
); |
|
1160 | ||
1161 |
Register helper methods. These method is called from L<DBIx::Custom> object directory. |
|
1162 | ||
1163 |
$dbi->update_or_insert; |
|
1164 |
$dbi->find_or_create; |
|
1165 | ||
cleanup
|
1166 |
=head2 C<insert> |
1167 | ||
1168 |
$dbi->insert(table => $table, |
|
1169 |
param => \%param, |
|
1170 |
append => $append, |
|
added experimental sugar met...
|
1171 |
filter => \%filter, |
1172 |
query => 1); |
|
cleanup
|
1173 | |
1174 |
Execute insert statement. |
|
1175 |
C<insert> method have C<table>, C<param>, C<append> |
|
1176 |
and C<filter> arguments. |
|
1177 |
C<table> is a table name. |
|
1178 |
C<param> is the pairs of column name value. this must be hash reference. |
|
1179 |
C<append> is a string added at the end of the SQL statement. |
|
1180 |
C<filter> is filters when parameter binding is executed. |
|
added experimental sugar met...
|
1181 |
C<query> is if you don't execute sql and get L<DBIx::Custom::Query> object as return value. |
1182 |
default to 0. This is experimental. |
|
cleanup
|
1183 |
This is overwrites C<default_bind_filter>. |
1184 |
Return value of C<insert()> is the count of affected rows. |
|
1185 | ||
1186 |
B<Example:> |
|
1187 | ||
added insert, update, update...
|
1188 |
$dbi->insert(table => 'book', |
cleanup
|
1189 |
param => {title => 'Perl', author => 'Taro'}, |
1190 |
append => "some statement", |
|
1191 |
filter => {title => 'encode_utf8'}) |
|
1192 | ||
added dbi_options attribute
|
1193 |
=head2 C<new> |
1194 | ||
1195 |
my $dbi = DBIx::Custom->connect(data_source => "dbi:mysql:database=dbname", |
|
1196 |
user => 'ken', password => '!LFKD%$&'); |
|
1197 | ||
1198 |
Create a new L<DBIx::Custom> object. |
|
1199 | ||
added experimental iterate_a...
|
1200 |
=head2 C<(experimental) iterate_all_columns> |
1201 | ||
1202 |
$dbi->iterate_all_columns( |
|
1203 |
sub { |
|
1204 |
my ($table, $column, $column_info) = @_; |
|
1205 |
|
|
1206 |
# do something; |
|
1207 |
} |
|
1208 |
); |
|
1209 | ||
1210 |
Iterate all columns of all tables. Argument is callback. |
|
1211 |
You can do anything by callback. |
|
1212 | ||
experimental extended select...
|
1213 |
=head2 C<(experimental) or> |
1214 | ||
1215 |
$or = $dbi->or(1, 5); |
|
1216 | ||
1217 |
Create L<DBIx::Custom::Or> object. This is used with select method's |
|
1218 |
where option. |
|
1219 | ||
cleanup
|
1220 |
=head2 C<register_filter> |
1221 | ||
1222 |
$dbi->register_filter(%filters); |
|
1223 |
$dbi->register_filter(\%filters); |
|
1224 |
|
|
1225 |
Register filter. Registered filters is available in the following attributes |
|
1226 |
or arguments. |
|
1227 | ||
1228 |
=over 4 |
|
1229 | ||
1230 |
=item * |
|
1231 | ||
1232 |
C<filter> argument of C<insert()>, C<update()>, |
|
1233 |
C<update_all()>, C<delete()>, C<delete_all()>, C<select()> |
|
1234 |
methods |
|
1235 | ||
1236 |
=item * |
|
1237 | ||
1238 |
C<execute()> method |
|
1239 | ||
1240 |
=item * |
|
1241 | ||
1242 |
C<default_filter> and C<filter> of C<DBIx::Custom::Query> |
|
1243 | ||
1244 |
=item * |
|
1245 | ||
1246 |
C<default_filter> and C<filter> of C<DBIx::Custom::Result> |
|
1247 | ||
1248 |
=back |
|
1249 | ||
1250 |
B<Example:> |
|
1251 | ||
1252 |
$dbi->register_filter( |
|
1253 |
encode_utf8 => sub { |
|
1254 |
my $value = shift; |
|
1255 |
|
|
1256 |
require Encode; |
|
1257 |
|
|
1258 |
return Encode::encode('UTF-8', $value); |
|
1259 |
}, |
|
1260 |
decode_utf8 => sub { |
|
1261 |
my $value = shift; |
|
1262 |
|
|
1263 |
require Encode; |
|
1264 |
|
|
1265 |
return Encode::decode('UTF-8', $value) |
|
1266 |
} |
|
1267 |
); |
|
1268 | ||
added auto_filter method
|
1269 |
=head2 C<rollback> |
cleanup
|
1270 | |
1271 |
$dbi->rollback; |
|
1272 | ||
1273 |
Rollback transaction. |
|
1274 |
This is same as L<DBI>'s C<rollback>. |
|
1275 | ||
removed DBIx::Custom commit ...
|
1276 |
=head2 C<select> |
packaging one directory
|
1277 |
|
cleanup
|
1278 |
my $result = $dbi->select(table => $table, |
1279 |
column => [@column], |
|
1280 |
where => \%where, |
|
1281 |
append => $append, |
|
1282 |
relation => \%relation, |
|
added experimental sugar met...
|
1283 |
filter => \%filter, |
1284 |
query => 1); |
|
update document
|
1285 | |
renamed build_query to creat...
|
1286 |
Execute select statement. |
cleanup
|
1287 |
C<select> method have C<table>, C<column>, C<where>, C<append>, |
renamed build_query to creat...
|
1288 |
C<relation> and C<filter> arguments. |
1289 |
C<table> is a table name. |
|
cleanup
|
1290 |
C<where> is where clause. this is normally hash reference. |
renamed build_query to creat...
|
1291 |
C<append> is a string added at the end of the SQL statement. |
1292 |
C<filter> is filters when parameter binding is executed. |
|
added experimental sugar met...
|
1293 |
C<query> is if you don't execute sql and get L<DBIx::Custom::Query> object as return value. |
1294 |
default to 0. This is experimental. |
|
update document
|
1295 | |
removed DESTROY method(not b...
|
1296 |
B<Example:> |
update document
|
1297 | |
added insert, update, update...
|
1298 |
# select * from book; |
1299 |
my $result = $dbi->select(table => 'book'); |
|
packaging one directory
|
1300 |
|
added insert, update, update...
|
1301 |
# select * from book where title = ?; |
1302 |
my $result = $dbi->select(table => 'book', where => {title => 'Perl'}); |
|
update document
|
1303 |
|
added insert, update, update...
|
1304 |
# select title, author from book where id = ? for update; |
cleanup
|
1305 |
my $result = $dbi->select( |
added insert, update, update...
|
1306 |
table => 'book', |
removed reconnect method
|
1307 |
column => ['title', 'author'], |
removed register_format()
|
1308 |
where => {id => 1}, |
1309 |
appned => 'for update' |
|
update document
|
1310 |
); |
1311 |
|
|
added insert, update, update...
|
1312 |
# select book.name as book_name from book, rental |
1313 |
# where book.id = rental.book_id; |
|
added commit method
|
1314 |
my $result = $dbi->select( |
added insert, update, update...
|
1315 |
table => ['book', 'rental'], |
1316 |
column => ['book.name as book_name'] |
|
1317 |
relation => {'book.id' => 'rental.book_id'} |
|
update document
|
1318 |
); |
1319 | ||
cleanup
|
1320 |
If you use more complex condition, |
1321 |
you can specify a array reference to C<where> argument. |
|
1322 | ||
1323 |
my $result = $dbi->select( |
|
added insert, update, update...
|
1324 |
table => 'book', |
cleanup
|
1325 |
column => ['title', 'author'], |
1326 |
where => ['{= title} or {like author}', |
|
1327 |
{title => '%Perl%', author => 'Ken'}] |
|
1328 |
); |
|
1329 | ||
1330 |
First element is a string. it contains tags, |
|
1331 |
such as "{= title} or {like author}". |
|
1332 |
Second element is paramters. |
|
1333 | ||
cleanup
|
1334 |
=head2 C<update> |
removed reconnect method
|
1335 | |
cleanup
|
1336 |
$dbi->update(table => $table, |
1337 |
param => \%params, |
|
1338 |
where => \%where, |
|
1339 |
append => $append, |
|
added experimental sugar met...
|
1340 |
filter => \%filter, |
1341 |
query => 1) |
|
removed reconnect method
|
1342 | |
cleanup
|
1343 |
Execute update statement. |
1344 |
C<update> method have C<table>, C<param>, C<where>, C<append> |
|
1345 |
and C<filter> arguments. |
|
1346 |
C<table> is a table name. |
|
1347 |
C<param> is column-value pairs. this must be hash reference. |
|
1348 |
C<where> is where clause. this must be hash reference. |
|
1349 |
C<append> is a string added at the end of the SQL statement. |
|
1350 |
C<filter> is filters when parameter binding is executed. |
|
added experimental sugar met...
|
1351 |
C<query> is if you don't execute sql and get L<DBIx::Custom::Query> object as return value. |
1352 |
default to 0. This is experimental. |
|
cleanup
|
1353 |
This is overwrites C<default_bind_filter>. |
1354 |
Return value of C<update()> is the count of affected rows. |
|
removed reconnect method
|
1355 | |
removed DBIx::Custom commit ...
|
1356 |
B<Example:> |
removed reconnect method
|
1357 | |
added insert, update, update...
|
1358 |
$dbi->update(table => 'book', |
cleanup
|
1359 |
param => {title => 'Perl', author => 'Taro'}, |
1360 |
where => {id => 5}, |
|
1361 |
append => "some statement", |
|
1362 |
filter => {title => 'encode_utf8'}); |
|
renamed build_query to creat...
|
1363 | |
added insert, update, update...
|
1364 |
=head2 C<(experimental) txn_scope> |
1365 | ||
1366 |
{ |
|
1367 |
my $txn = $dbi->txn_scope; |
|
1368 |
$dbi->insert(table => 'book', param => {title => 'Perl'}); |
|
1369 |
$dbi->insert(table => 'book', param => {title => 'Good days'}); |
|
1370 |
$txn->commit; |
|
1371 |
} |
|
1372 | ||
1373 |
Create transaction scope. If you escape scope(that is { .. }) and commited, |
|
1374 |
Rollback is automatically done. |
|
1375 | ||
1376 |
Note that this is feature of L<DBIx::TransactionManager> |
|
1377 |
L<DBIx::TransactionManager> is required. |
|
1378 | ||
cleanup
|
1379 |
=head2 C<(experimental) table> |
remove DBIx::Custom::Model
|
1380 | |
1381 |
$dbi->table('book', |
|
1382 |
insert => sub { ... }, |
|
1383 |
update => sub { ... } |
|
1384 |
); |
|
1385 |
|
|
1386 |
my $table = $dbi->table('book'); |
|
1387 | ||
1388 |
Create a L<DBIx::Custom::Table> object, |
|
1389 |
or get a L<DBIx::Custom::Table> object. |
|
1390 | ||
cleanup
|
1391 |
=head2 C<update_all> |
renamed build_query to creat...
|
1392 | |
cleanup
|
1393 |
$dbi->update_all(table => $table, |
1394 |
param => \%params, |
|
1395 |
filter => \%filter, |
|
1396 |
append => $append); |
|
renamed build_query to creat...
|
1397 | |
cleanup
|
1398 |
Execute update statement to update all rows. |
1399 |
Arguments is same as C<update> method, |
|
1400 |
except that C<update_all> don't have C<where> argument. |
|
1401 |
Return value of C<update_all()> is the count of affected rows. |
|
removed DBIx::Custom commit ...
|
1402 | |
1403 |
B<Example:> |
|
packaging one directory
|
1404 | |
added insert, update, update...
|
1405 |
$dbi->update_all(table => 'book', |
cleanup
|
1406 |
param => {author => 'taro'}, |
1407 |
filter => {author => 'encode_utf8'}); |
|
removed reconnect method
|
1408 | |
fix tests
|
1409 |
=head2 C<(experimental) where> |
1410 | ||
1411 |
my $where = $dbi->where; |
|
1412 | ||
1413 |
Create a new L<DBIx::Custom::Where> object. |
|
1414 | ||
cleanup
|
1415 |
=head2 C<(deprecated) default_bind_filter> |
1416 | ||
1417 |
my $default_bind_filter = $dbi->default_bind_filter; |
|
1418 |
$dbi = $dbi->default_bind_filter($fname); |
|
1419 | ||
1420 |
Default filter when parameter binding is executed. |
|
1421 | ||
1422 |
=head2 C<(deprecated) default_fetch_filter> |
|
1423 | ||
1424 |
my $default_fetch_filter = $dbi->default_fetch_filter; |
|
1425 |
$dbi = $dbi->default_fetch_filter($fname); |
|
1426 | ||
1427 |
=head2 C<(deprecated) cache_method> |
|
1428 | ||
1429 |
$dbi = $dbi->cache_method(\&cache_method); |
|
1430 |
$cache_method = $dbi->cache_method |
|
1431 | ||
1432 |
Method to set and get caches. |
|
1433 | ||
1434 |
B<Example:> |
|
1435 | ||
1436 |
$dbi->cache_method( |
|
1437 |
sub { |
|
1438 |
my $self = shift; |
|
1439 |
|
|
1440 |
$self->{_cached} ||= {}; |
|
1441 |
|
|
1442 |
if (@_ > 1) { |
|
1443 |
$self->{_cached}{$_[0]} = $_[1] |
|
1444 |
} |
|
1445 |
else { |
|
1446 |
return $self->{_cached}{$_[0]} |
|
1447 |
} |
|
1448 |
} |
|
1449 |
); |
|
1450 | ||
DBIx::Custom is now stable
|
1451 |
=head1 STABILITY |
1452 | ||
1453 |
L<DBIx::Custom> is now stable. APIs keep backword compatible in the feature. |
|
1454 | ||
removed DESTROY method(not b...
|
1455 |
=head1 BUGS |
1456 | ||
renamed build_query to creat...
|
1457 |
Please tell me bugs if found. |
removed DESTROY method(not b...
|
1458 | |
1459 |
C<< <kimoto.yuki at gmail.com> >> |
|
1460 | ||
1461 |
L<http://github.com/yuki-kimoto/DBIx-Custom> |
|
1462 | ||
removed reconnect method
|
1463 |
=head1 AUTHOR |
1464 | ||
1465 |
Yuki Kimoto, C<< <kimoto.yuki at gmail.com> >> |
|
version 0.0901
|
1466 | |
packaging one directory
|
1467 |
=head1 COPYRIGHT & LICENSE |
1468 | ||
1469 |
Copyright 2009 Yuki Kimoto, all rights reserved. |
|
1470 | ||
1471 |
This program is free software; you can redistribute it and/or modify it |
|
1472 |
under the same terms as Perl itself. |
|
1473 | ||
1474 |
=cut |
|
added cache_method attribute
|
1475 | |
1476 |