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; |
|
many many changes
|
11 |
use DBIx::Custom::SQLTemplate; |
cleanup
|
12 |
use DBIx::Custom::Query; |
packaging one directory
|
13 | |
catch up with Object::Simple...
|
14 |
__PACKAGE__->attr('dbh'); |
version 0.0901
|
15 | |
catch up with Object::Simple...
|
16 |
__PACKAGE__->class_attr(_query_caches => sub { {} }); |
17 |
__PACKAGE__->class_attr(_query_cache_keys => sub { [] }); |
|
packaging one directory
|
18 | |
catch up with Object::Simple...
|
19 |
__PACKAGE__->class_attr('query_cache_max', default => 50, |
20 |
inherit => 'scalar_copy'); |
|
21 | ||
cleanup
|
22 |
__PACKAGE__->attr([qw/user password data_source/]); |
23 |
__PACKAGE__->attr([qw/database host port/]); |
|
rename bind_filter to query_...
|
24 |
__PACKAGE__->attr([qw/default_query_filter default_fetch_filter options/]); |
packaging one directory
|
25 | |
cleanup
|
26 |
__PACKAGE__->dual_attr([qw/ filters formats/], |
catch up with Object::Simple...
|
27 |
default => sub { {} }, inherit => 'hash_copy'); |
packaging one directory
|
28 | |
cleanup
|
29 |
__PACKAGE__->attr(result_class => 'DBIx::Custom::Result'); |
many many changes
|
30 |
__PACKAGE__->attr(sql_tmpl => sub { DBIx::Custom::SQLTemplate->new }); |
packaging one directory
|
31 | |
some changed
|
32 |
sub register_filter { |
packaging one directory
|
33 |
my $invocant = shift; |
34 |
|
|
update document
|
35 |
# Add filter |
catch up with Object::Simple...
|
36 |
my $filters = ref $_[0] eq 'HASH' ? $_[0] : {@_}; |
37 |
$invocant->filters({%{$invocant->filters}, %$filters}); |
|
38 |
|
|
packaging one directory
|
39 |
return $invocant; |
40 |
} |
|
41 | ||
some changed
|
42 |
sub register_format{ |
packaging one directory
|
43 |
my $invocant = shift; |
44 |
|
|
update document
|
45 |
# Add format |
catch up with Object::Simple...
|
46 |
my $formats = ref $_[0] eq 'HASH' ? $_[0] : {@_}; |
47 |
$invocant->formats({%{$invocant->formats}, %$formats}); |
|
48 | ||
packaging one directory
|
49 |
return $invocant; |
50 |
} |
|
51 | ||
52 |
sub _auto_commit { |
|
53 |
my $self = shift; |
|
54 |
|
|
update document
|
55 |
# Not connected |
packaging one directory
|
56 |
croak("Not yet connect to database") unless $self->dbh; |
57 |
|
|
58 |
if (@_) { |
|
update document
|
59 |
|
60 |
# Set AutoCommit |
|
packaging one directory
|
61 |
$self->dbh->{AutoCommit} = $_[0]; |
update document
|
62 |
|
packaging one directory
|
63 |
return $self; |
64 |
} |
|
65 |
return $self->dbh->{AutoCommit}; |
|
66 |
} |
|
67 | ||
68 |
sub connect { |
|
69 |
my $self = shift; |
|
update document
|
70 |
|
71 |
# Information |
|
packaging one directory
|
72 |
my $data_source = $self->data_source; |
73 |
my $user = $self->user; |
|
74 |
my $password = $self->password; |
|
version 0.0901
|
75 |
my $options = $self->options; |
packaging one directory
|
76 |
|
update document
|
77 |
# Connect |
packaging one directory
|
78 |
my $dbh = eval{DBI->connect( |
79 |
$data_source, |
|
80 |
$user, |
|
81 |
$password, |
|
82 |
{ |
|
83 |
RaiseError => 1, |
|
84 |
PrintError => 0, |
|
85 |
AutoCommit => 1, |
|
version 0.0901
|
86 |
%{$options || {} } |
packaging one directory
|
87 |
} |
88 |
)}; |
|
89 |
|
|
update document
|
90 |
# Connect error |
packaging one directory
|
91 |
croak $@ if $@; |
92 |
|
|
update document
|
93 |
# Database handle |
packaging one directory
|
94 |
$self->dbh($dbh); |
update document
|
95 |
|
packaging one directory
|
96 |
return $self; |
97 |
} |
|
98 | ||
99 |
sub DESTROY { |
|
100 |
my $self = shift; |
|
update document
|
101 |
|
102 |
# Disconnect |
|
packaging one directory
|
103 |
$self->disconnect if $self->connected; |
104 |
} |
|
105 | ||
update document
|
106 |
sub connected { ref shift->{dbh} eq 'DBI::db' } |
packaging one directory
|
107 | |
108 |
sub disconnect { |
|
109 |
my $self = shift; |
|
update document
|
110 |
|
packaging one directory
|
111 |
if ($self->connected) { |
update document
|
112 |
|
113 |
# Disconnect |
|
packaging one directory
|
114 |
$self->dbh->disconnect; |
115 |
delete $self->{dbh}; |
|
116 |
} |
|
update document
|
117 |
|
118 |
return $self; |
|
packaging one directory
|
119 |
} |
120 | ||
121 |
sub reconnect { |
|
122 |
my $self = shift; |
|
update document
|
123 |
|
124 |
# Reconnect |
|
packaging one directory
|
125 |
$self->disconnect if $self->connected; |
126 |
$self->connect; |
|
update document
|
127 |
|
128 |
return $self; |
|
packaging one directory
|
129 |
} |
130 | ||
131 |
sub create_query { |
|
132 |
my ($self, $template) = @_; |
|
cleanup
|
133 |
|
packaging one directory
|
134 |
my $class = ref $self; |
135 |
|
|
cleanup
|
136 |
if (ref $template eq 'ARRAY') { |
137 |
$template = $template->[1]; |
|
138 |
} |
|
139 |
|
|
packaging one directory
|
140 |
# Create query from SQL template |
version 0.0901
|
141 |
my $sql_tmpl = $self->sql_tmpl; |
packaging one directory
|
142 |
|
143 |
# Try to get cached query |
|
many many changes
|
144 |
my $cached_query = $class->_query_caches->{"$template"}; |
packaging one directory
|
145 |
|
146 |
# Create query |
|
fix timeformat tests
|
147 |
my $query; |
cleanup
|
148 |
if ($cached_query) { |
149 |
$query = DBIx::Custom::Query->new( |
|
150 |
sql => $cached_query->sql, |
|
simplify filtering system
|
151 |
columns => $cached_query->columns |
cleanup
|
152 |
); |
fix timeformat tests
|
153 |
} |
154 |
else { |
|
Simplify key search
|
155 |
$query = eval{$sql_tmpl->create_query($template)}; |
packaging one directory
|
156 |
croak($@) if $@; |
157 |
|
|
many many changes
|
158 |
$class->_add_query_cache("$template", $query); |
packaging one directory
|
159 |
} |
160 |
|
|
161 |
# Connect if not |
|
162 |
$self->connect unless $self->connected; |
|
163 |
|
|
164 |
# Prepare statement handle |
|
add all tests
|
165 |
my $sth = $self->dbh->prepare($query->{sql}); |
packaging one directory
|
166 |
|
167 |
# Set statement handle |
|
168 |
$query->sth($sth); |
|
169 |
|
|
170 |
return $query; |
|
171 |
} |
|
172 | ||
rename query() to execute()
|
173 |
sub execute{ |
many many changes
|
174 |
my ($self, $query, $params, $args) = @_; |
packaging one directory
|
175 |
$params ||= {}; |
176 |
|
|
177 |
# First argument is SQL template |
|
Simplify key search
|
178 |
unless (ref $query eq 'DBIx::Custom::Query') { |
179 |
my $template; |
|
180 |
|
|
181 |
if (ref $query eq 'ARRAY') { |
|
many many changes
|
182 |
$template = $query->[0]; |
Simplify key search
|
183 |
} |
184 |
else { $template = $query } |
|
185 |
|
|
many many changes
|
186 |
$query = $self->create_query($template); |
packaging one directory
|
187 |
} |
many many changes
|
188 | |
many change
|
189 |
# Filter |
190 |
my $filter = $args->{filter} || $query->filter || {}; |
|
191 | ||
packaging one directory
|
192 |
# Create bind value |
many many changes
|
193 |
my $bind_values = $self->_build_bind_values($query, $params, $filter); |
packaging one directory
|
194 |
|
195 |
# Execute |
|
version 0.0901
|
196 |
my $sth = $query->sth; |
197 |
my $affected = eval{$sth->execute(@$bind_values)}; |
|
packaging one directory
|
198 |
|
199 |
# Execute error |
|
200 |
if (my $execute_error = $@) { |
|
201 |
require Data::Dumper; |
|
202 |
my $sql = $query->{sql} || ''; |
|
203 |
my $params_dump = Data::Dumper->Dump([$params], ['*params']); |
|
204 |
|
|
205 |
croak("$execute_error" . |
|
206 |
"<Your SQL>\n$sql\n" . |
|
207 |
"<Your parameters>\n$params_dump"); |
|
208 |
} |
|
209 |
|
|
210 |
# Return resultset if select statement is executed |
|
211 |
if ($sth->{NUM_OF_FIELDS}) { |
|
212 |
|
|
213 |
# Get result class |
|
214 |
my $result_class = $self->result_class; |
|
215 |
|
|
216 |
# Create result |
|
217 |
my $result = $result_class->new({ |
|
many many changes
|
218 |
sth => $sth, |
219 |
default_filter => $self->default_fetch_filter, |
|
220 |
filters => $self->filters |
|
packaging one directory
|
221 |
}); |
222 |
return $result; |
|
223 |
} |
|
version 0.0901
|
224 |
return $affected; |
packaging one directory
|
225 |
} |
226 | ||
227 |
sub _build_bind_values { |
|
many many changes
|
228 |
my ($self, $query, $params, $filter) = @_; |
packaging one directory
|
229 |
|
230 |
# binding values |
|
231 |
my @bind_values; |
|
232 |
|
|
Simplify key search
|
233 |
# Build bind values |
simplify filtering system
|
234 |
my $count = {}; |
235 |
foreach my $column (@{$query->columns}) { |
|
packaging one directory
|
236 |
|
Simplify key search
|
237 |
# Value |
simplify filtering system
|
238 |
my $value = ref $params->{$column} |
239 |
? $params->{$column}->[$count->{$column} || 0] |
|
240 |
: $params->{$column}; |
|
packaging one directory
|
241 |
|
Simplify key search
|
242 |
# Filter |
simplify filtering system
|
243 |
$filter ||= {}; |
many many changes
|
244 |
|
simplify filtering system
|
245 |
# Filter name |
246 |
my $fname = $filter->{$column} || $self->default_query_filter || ''; |
|
247 |
|
|
248 |
my $filters = $self->filters; |
|
many change
|
249 |
push @bind_values, $filters->{$fname} |
250 |
? $filters->{$fname}->($value) |
|
251 |
: $value; |
|
simplify filtering system
|
252 |
|
253 |
# Count up |
|
254 |
$count->{$column}++; |
|
cleanup
|
255 |
} |
256 |
|
|
Simplify key search
|
257 |
return \@bind_values; |
cleanup
|
258 |
} |
259 | ||
remove DBIx::Custom::Transac...
|
260 |
sub run_transaction { |
261 |
my ($self, $transaction) = @_; |
|
262 |
|
|
263 |
# Shorcut |
|
many change
|
264 |
return unless $self; |
remove DBIx::Custom::Transac...
|
265 |
|
266 |
# Check auto commit |
|
267 |
croak("AutoCommit must be true before transaction start") |
|
many change
|
268 |
unless $self->_auto_commit; |
remove DBIx::Custom::Transac...
|
269 |
|
270 |
# Auto commit off |
|
many change
|
271 |
$self->_auto_commit(0); |
remove DBIx::Custom::Transac...
|
272 |
|
273 |
# Run transaction |
|
274 |
eval {$transaction->()}; |
|
275 |
|
|
276 |
# Tranzaction error |
|
277 |
my $transaction_error = $@; |
|
278 |
|
|
279 |
# Tranzaction is failed. |
|
280 |
if ($transaction_error) { |
|
281 |
# Rollback |
|
many change
|
282 |
eval{$self->dbh->rollback}; |
remove DBIx::Custom::Transac...
|
283 |
|
284 |
# Rollback error |
|
285 |
my $rollback_error = $@; |
|
286 |
|
|
287 |
# Auto commit on |
|
many change
|
288 |
$self->_auto_commit(1); |
remove DBIx::Custom::Transac...
|
289 |
|
290 |
if ($rollback_error) { |
|
291 |
# Rollback is failed |
|
292 |
croak("${transaction_error}Rollback is failed : $rollback_error"); |
|
293 |
} |
|
294 |
else { |
|
295 |
# Rollback is success |
|
296 |
croak("${transaction_error}Rollback is success"); |
|
297 |
} |
|
298 |
} |
|
299 |
# Tranzaction is success |
|
300 |
else { |
|
301 |
# Commit |
|
many change
|
302 |
eval{$self->dbh->commit}; |
remove DBIx::Custom::Transac...
|
303 |
my $commit_error = $@; |
304 |
|
|
305 |
# Auto commit on |
|
many change
|
306 |
$self->_auto_commit(1); |
remove DBIx::Custom::Transac...
|
307 |
|
308 |
# Commit is failed |
|
309 |
croak($commit_error) if $commit_error; |
|
310 |
} |
|
311 |
} |
|
312 | ||
version 0.0901
|
313 |
sub create_table { |
314 |
my ($self, $table, @column_definitions) = @_; |
|
315 |
|
|
316 |
# Create table |
|
rename fetch_first to fetch_...
|
317 |
my $sql = "create table $table ("; |
version 0.0901
|
318 |
|
319 |
# Column definitions |
|
320 |
foreach my $column_definition (@column_definitions) { |
|
rename fetch_first to fetch_...
|
321 |
$sql .= "$column_definition,"; |
version 0.0901
|
322 |
} |
rename fetch_first to fetch_...
|
323 |
$sql =~ s/,$//; |
version 0.0901
|
324 |
|
325 |
# End |
|
rename fetch_first to fetch_...
|
326 |
$sql .= ");"; |
version 0.0901
|
327 |
|
add all tests
|
328 |
# Connect |
329 |
$self->connect unless $self->connected; |
|
330 |
|
|
version 0.0901
|
331 |
# Do query |
add all tests
|
332 |
return $self->dbh->do($sql); |
version 0.0901
|
333 |
} |
334 | ||
335 |
sub drop_table { |
|
336 |
my ($self, $table) = @_; |
|
337 |
|
|
338 |
# Drop table |
|
339 |
my $sql = "drop table $table;"; |
|
340 | ||
add all tests
|
341 |
# Connect |
342 |
$self->connect unless $self->connected; |
|
343 | ||
version 0.0901
|
344 |
# Do query |
add all tests
|
345 |
return $self->dbh->do($sql); |
version 0.0901
|
346 |
} |
347 | ||
many many changes
|
348 |
our %VALID_INSERT_ARGS = map { $_ => 1 } qw/append filter/; |
cleanup insert
|
349 | |
packaging one directory
|
350 |
sub insert { |
cleanup insert
|
351 |
my ($self, $table, $insert_params, $args) = @_; |
352 |
|
|
353 |
# Table |
|
354 |
$table ||= ''; |
|
355 |
|
|
356 |
# Insert params |
|
357 |
$insert_params ||= {}; |
|
358 |
|
|
359 |
# Arguments |
|
360 |
$args ||= {}; |
|
361 |
|
|
362 |
# Check arguments |
|
363 |
foreach my $name (keys %$args) { |
|
364 |
croak "\"$name\" is invalid name" |
|
365 |
unless $VALID_INSERT_ARGS{$name}; |
|
366 |
} |
|
367 |
|
|
368 |
my $append_statement = $args->{append} || ''; |
|
many many changes
|
369 |
my $filter = $args->{filter}; |
packaging one directory
|
370 |
|
371 |
# Insert keys |
|
372 |
my @insert_keys = keys %$insert_params; |
|
373 |
|
|
374 |
# Not exists insert keys |
|
375 |
croak("Key-value pairs for insert must be specified to 'insert' second argument") |
|
376 |
unless @insert_keys; |
|
377 |
|
|
378 |
# Templte for insert |
|
379 |
my $template = "insert into $table {insert " . join(' ', @insert_keys) . '}'; |
|
insert, update, delete appnd...
|
380 |
$template .= " $append_statement" if $append_statement; |
packaging one directory
|
381 |
|
382 |
# Execute query |
|
rename query() to execute()
|
383 |
my $ret_val = $self->execute($template, $insert_params, {filter => $filter}); |
packaging one directory
|
384 |
|
385 |
return $ret_val; |
|
386 |
} |
|
387 | ||
cleanup update and update_al...
|
388 |
our %VALID_UPDATE_ARGS |
many many changes
|
389 |
= map { $_ => 1 } qw/where append filter allow_update_all/; |
cleanup update and update_al...
|
390 | |
packaging one directory
|
391 |
sub update { |
simplify filtering system
|
392 |
my ($self, $table, $params, $args) = @_; |
cleanup update and update_al...
|
393 |
|
394 |
# Check arguments |
|
395 |
foreach my $name (keys %$args) { |
|
396 |
croak "\"$name\" is invalid name" |
|
397 |
unless $VALID_UPDATE_ARGS{$name}; |
|
398 |
} |
|
399 |
|
|
400 |
# Arguments |
|
401 |
my $where_params = $args->{where} || {}; |
|
402 |
my $append_statement = $args->{append} || ''; |
|
many many changes
|
403 |
my $filter = $args->{filter}; |
cleanup update and update_al...
|
404 |
my $allow_update_all = $args->{allow_update_all}; |
packaging one directory
|
405 |
|
406 |
# Update keys |
|
simplify filtering system
|
407 |
my @update_keys = keys %$params; |
packaging one directory
|
408 |
|
409 |
# Not exists update kyes |
|
410 |
croak("Key-value pairs for update must be specified to 'update' second argument") |
|
411 |
unless @update_keys; |
|
412 |
|
|
413 |
# Where keys |
|
414 |
my @where_keys = keys %$where_params; |
|
415 |
|
|
416 |
# Not exists where keys |
|
417 |
croak("Key-value pairs for where clause must be specified to 'update' third argument") |
|
cleanup update and update_al...
|
418 |
if !@where_keys && !$allow_update_all; |
packaging one directory
|
419 |
|
420 |
# Update clause |
|
421 |
my $update_clause = '{update ' . join(' ', @update_keys) . '}'; |
|
422 |
|
|
423 |
# Where clause |
|
424 |
my $where_clause = ''; |
|
simplify filtering system
|
425 |
my $new_where = {}; |
many change
|
426 |
|
packaging one directory
|
427 |
if (@where_keys) { |
428 |
$where_clause = 'where '; |
|
429 |
foreach my $where_key (@where_keys) { |
|
simplify filtering system
|
430 |
|
431 |
$where_clause .= "{= $where_key} and "; |
|
packaging one directory
|
432 |
} |
433 |
$where_clause =~ s/ and $//; |
|
434 |
} |
|
435 |
|
|
436 |
# Template for update |
|
437 |
my $template = "update $table $update_clause $where_clause"; |
|
insert, update, delete appnd...
|
438 |
$template .= " $append_statement" if $append_statement; |
packaging one directory
|
439 |
|
440 |
# Rearrange parammeters |
|
simplify filtering system
|
441 |
foreach my $where_key (@where_keys) { |
442 |
|
|
443 |
if (exists $params->{$where_key}) { |
|
444 |
$params->{$where_key} = [$params->{$where_key}] |
|
445 |
unless ref $params->{$where_key} eq 'ARRAY'; |
|
446 |
|
|
compile success
|
447 |
push @{$params->{$where_key}}, $where_params->{$where_key}; |
simplify filtering system
|
448 |
} |
add tests
|
449 |
else { |
450 |
$params->{$where_key} = $where_params->{$where_key}; |
|
451 |
} |
|
simplify filtering system
|
452 |
} |
packaging one directory
|
453 |
|
454 |
# Execute query |
|
rename query() to execute()
|
455 |
my $ret_val = $self->execute($template, $params, {filter => $filter}); |
packaging one directory
|
456 |
|
457 |
return $ret_val; |
|
458 |
} |
|
459 | ||
460 |
sub update_all { |
|
cleanup update and update_al...
|
461 |
my ($self, $table, $update_params, $args) = @_; |
462 |
|
|
refactoring select
|
463 |
# Allow all update |
cleanup update and update_al...
|
464 |
$args ||= {}; |
465 |
$args->{allow_update_all} = 1; |
|
insert, update, delete appnd...
|
466 |
|
update document
|
467 |
# Update all rows |
cleanup update and update_al...
|
468 |
return $self->update($table, $update_params, $args); |
packaging one directory
|
469 |
} |
470 | ||
refactoring delete and delet...
|
471 |
our %VALID_DELETE_ARGS |
many many changes
|
472 |
= map { $_ => 1 } qw/where append filter allow_delete_all/; |
refactoring delete and delet...
|
473 | |
packaging one directory
|
474 |
sub delete { |
refactoring delete and delet...
|
475 |
my ($self, $table, $args) = @_; |
476 |
|
|
477 |
# Table |
|
478 |
$table ||= ''; |
|
479 | ||
480 |
# Check arguments |
|
481 |
foreach my $name (keys %$args) { |
|
482 |
croak "\"$name\" is invalid name" |
|
483 |
unless $VALID_DELETE_ARGS{$name}; |
|
484 |
} |
|
485 |
|
|
486 |
# Arguments |
|
487 |
my $where_params = $args->{where} || {}; |
|
488 |
my $append_statement = $args->{append}; |
|
many many changes
|
489 |
my $filter = $args->{filter}; |
refactoring delete and delet...
|
490 |
my $allow_delete_all = $args->{allow_delete_all}; |
packaging one directory
|
491 |
|
492 |
# Where keys |
|
493 |
my @where_keys = keys %$where_params; |
|
494 |
|
|
495 |
# Not exists where keys |
|
496 |
croak("Key-value pairs for where clause must be specified to 'delete' second argument") |
|
refactoring delete and delet...
|
497 |
if !@where_keys && !$allow_delete_all; |
packaging one directory
|
498 |
|
499 |
# Where clause |
|
500 |
my $where_clause = ''; |
|
501 |
if (@where_keys) { |
|
502 |
$where_clause = 'where '; |
|
503 |
foreach my $where_key (@where_keys) { |
|
504 |
$where_clause .= "{= $where_key} and "; |
|
505 |
} |
|
506 |
$where_clause =~ s/ and $//; |
|
507 |
} |
|
508 |
|
|
509 |
# Template for delete |
|
510 |
my $template = "delete from $table $where_clause"; |
|
insert, update, delete appnd...
|
511 |
$template .= " $append_statement" if $append_statement; |
packaging one directory
|
512 |
|
513 |
# Execute query |
|
rename query() to execute()
|
514 |
my $ret_val = $self->execute($template, $where_params, {filter => $filter}); |
packaging one directory
|
515 |
|
516 |
return $ret_val; |
|
517 |
} |
|
518 | ||
519 |
sub delete_all { |
|
refactoring delete and delet...
|
520 |
my ($self, $table, $args) = @_; |
521 |
|
|
refactoring select
|
522 |
# Allow all delete |
refactoring delete and delet...
|
523 |
$args ||= {}; |
524 |
$args->{allow_delete_all} = 1; |
|
insert, update, delete appnd...
|
525 |
|
update document
|
526 |
# Delete all rows |
refactoring delete and delet...
|
527 |
return $self->delete($table, $args); |
packaging one directory
|
528 |
} |
529 | ||
refactoring select
|
530 |
our %VALID_SELECT_ARGS |
many many changes
|
531 |
= map { $_ => 1 } qw/columns where append filter/; |
refactoring select
|
532 | |
packaging one directory
|
533 |
sub select { |
refactoring select
|
534 |
my ($self, $tables, $args) = @_; |
packaging one directory
|
535 |
|
refactoring select
|
536 |
# Table |
537 |
$tables ||= ''; |
|
538 |
$tables = [$tables] unless ref $tables; |
|
packaging one directory
|
539 |
|
refactoring select
|
540 |
# Check arguments |
541 |
foreach my $name (keys %$args) { |
|
542 |
croak "\"$name\" is invalid name" |
|
543 |
unless $VALID_SELECT_ARGS{$name}; |
|
544 |
} |
|
packaging one directory
|
545 |
|
refactoring select
|
546 |
# Arguments |
547 |
my $columns = $args->{columns} || []; |
|
548 |
my $where_params = $args->{where} || {}; |
|
549 |
my $append_statement = $args->{append} || ''; |
|
many many changes
|
550 |
my $filter = $args->{filter}; |
packaging one directory
|
551 |
|
552 |
# SQL template for select statement |
|
553 |
my $template = 'select '; |
|
554 |
|
|
555 |
# Join column clause |
|
556 |
if (@$columns) { |
|
557 |
foreach my $column (@$columns) { |
|
558 |
$template .= "$column, "; |
|
559 |
} |
|
560 |
$template =~ s/, $/ /; |
|
561 |
} |
|
562 |
else { |
|
563 |
$template .= '* '; |
|
564 |
} |
|
565 |
|
|
566 |
# Join table |
|
567 |
$template .= 'from '; |
|
568 |
foreach my $table (@$tables) { |
|
569 |
$template .= "$table, "; |
|
570 |
} |
|
571 |
$template =~ s/, $/ /; |
|
572 |
|
|
573 |
# Where clause keys |
|
574 |
my @where_keys = keys %$where_params; |
|
575 |
|
|
576 |
# Join where clause |
|
577 |
if (@where_keys) { |
|
578 |
$template .= 'where '; |
|
579 |
foreach my $where_key (@where_keys) { |
|
compile success
|
580 |
$template .= "{= $where_key} and "; |
packaging one directory
|
581 |
} |
582 |
} |
|
583 |
$template =~ s/ and $//; |
|
584 |
|
|
585 |
# Append something to last of statement |
|
586 |
if ($append_statement =~ s/^where //) { |
|
587 |
if (@where_keys) { |
|
588 |
$template .= " and $append_statement"; |
|
589 |
} |
|
590 |
else { |
|
591 |
$template .= " where $append_statement"; |
|
592 |
} |
|
593 |
} |
|
594 |
else { |
|
595 |
$template .= " $append_statement"; |
|
596 |
} |
|
597 |
|
|
598 |
# Execute query |
|
rename query() to execute()
|
599 |
my $result = $self->execute($template, $where_params, {filter => $filter}); |
packaging one directory
|
600 |
|
601 |
return $result; |
|
602 |
} |
|
603 | ||
604 |
sub _add_query_cache { |
|
605 |
my ($class, $template, $query) = @_; |
|
update document
|
606 |
|
607 |
# Query information |
|
packaging one directory
|
608 |
my $query_cache_keys = $class->_query_cache_keys; |
609 |
my $query_caches = $class->_query_caches; |
|
610 |
|
|
update document
|
611 |
# Already cached |
packaging one directory
|
612 |
return $class if $query_caches->{$template}; |
613 |
|
|
update document
|
614 |
# Cache |
packaging one directory
|
615 |
$query_caches->{$template} = $query; |
616 |
push @$query_cache_keys, $template; |
|
617 |
|
|
update document
|
618 |
# Check cache overflow |
packaging one directory
|
619 |
my $overflow = @$query_cache_keys - $class->query_cache_max; |
620 |
for (my $i = 0; $i < $overflow; $i++) { |
|
621 |
my $template = shift @$query_cache_keys; |
|
622 |
delete $query_caches->{$template}; |
|
623 |
} |
|
624 |
|
|
625 |
return $class; |
|
626 |
} |
|
627 | ||
628 |
=head1 NAME |
|
629 | ||
renamed fetch_rows to fetch_...
|
630 |
DBIx::Custom - DBI with hash bind and filtering system |
packaging one directory
|
631 | |
version 0.0901
|
632 |
=head1 VERSION |
packaging one directory
|
633 | |
some changed
|
634 |
Version 0.1402 |
catch up with Object::Simple...
|
635 | |
636 |
=cut |
|
637 | ||
some changed
|
638 |
our $VERSION = '0.1402'; |
639 |
$VERSION = eval $VERSION; |
|
packaging one directory
|
640 | |
cleanup
|
641 |
=head1 STATE |
642 | ||
643 |
This module is not stable. Method name and functionality will be change. |
|
644 | ||
version 0.0901
|
645 |
=head1 SYNOPSYS |
646 |
|
|
647 |
# New |
|
648 |
my $dbi = DBIx::Custom->new(data_source => "dbi:mysql:database=books" |
|
649 |
user => 'ken', password => '!LFKD%$&'); |
|
650 |
|
|
651 |
# Query |
|
rename query() to execute()
|
652 |
$dbi->execute("select title from books"); |
version 0.0901
|
653 |
|
654 |
# Query with parameters |
|
rename query() to execute()
|
655 |
$dbi->execute("select id from books where {= author} && {like title}", |
version 0.0901
|
656 |
{author => 'ken', title => '%Perl%'}); |
657 |
|
|
some changed
|
658 |
|
659 |
|
|
version 0.0901
|
660 |
# Insert |
661 |
$dbi->insert('books', {title => 'perl', author => 'Ken'}); |
|
662 |
|
|
663 |
# Update |
|
renamed fetch_rows to fetch_...
|
664 |
$dbi->update('books', {title => 'aaa', author => 'Ken'}, {where => {id => 5}}); |
version 0.0901
|
665 |
|
666 |
# Delete |
|
renamed fetch_rows to fetch_...
|
667 |
$dbi->delete('books', {where => {author => 'Ken'}}); |
version 0.0901
|
668 |
|
669 |
# Select |
|
renamed fetch_rows to fetch_...
|
670 |
my $result = $dbi->select('books'); |
671 |
my $result = $dbi->select('books', {where => {author => 'taro'}}); |
|
672 |
|
|
673 |
my $result = $dbi->select( |
|
674 |
'books', |
|
675 |
{ |
|
676 |
columns => [qw/author title/], |
|
677 |
where => {author => 'Ken'} |
|
678 |
} |
|
679 |
); |
|
680 |
|
|
681 |
my $result = $dbi->select( |
|
682 |
'books', |
|
683 |
{ |
|
684 |
columns => [qw/author title/], |
|
685 |
where => {author => 'Ken'}, |
|
686 |
append => 'order by id limit 1' |
|
687 |
} |
|
688 |
); |
|
packaging one directory
|
689 | |
update document
|
690 |
=head1 ATTRIBUTES |
packaging one directory
|
691 | |
692 |
=head2 user |
|
693 | ||
update document
|
694 |
Database user name |
bind_filter argument is chan...
|
695 |
|
version 0.0901
|
696 |
$dbi = $dbi->user('Ken'); |
697 |
$user = $dbi->user; |
|
bind_filter argument is chan...
|
698 |
|
packaging one directory
|
699 |
=head2 password |
700 | ||
update document
|
701 |
Database password |
bind_filter argument is chan...
|
702 |
|
version 0.0901
|
703 |
$dbi = $dbi->password('lkj&le`@s'); |
704 |
$password = $dbi->password; |
|
packaging one directory
|
705 | |
706 |
=head2 data_source |
|
707 | ||
update document
|
708 |
Database data source |
bind_filter argument is chan...
|
709 |
|
version 0.0901
|
710 |
$dbi = $dbi->data_source("dbi:mysql:dbname=$database"); |
711 |
$data_source = $dbi->data_source; |
|
packaging one directory
|
712 |
|
version 0.0901
|
713 |
If you know data source more, See also L<DBI>. |
714 | ||
packaging one directory
|
715 |
=head2 database |
716 | ||
update document
|
717 |
Database name |
bind_filter argument is chan...
|
718 | |
version 0.0901
|
719 |
$dbi = $dbi->database('books'); |
720 |
$database = $dbi->database; |
|
packaging one directory
|
721 | |
add port and host method
|
722 |
=head2 host |
723 | ||
update document
|
724 |
Host name |
bind_filter argument is chan...
|
725 | |
version 0.0901
|
726 |
$dbi = $dbi->host('somehost.com'); |
727 |
$host = $dbi->host; |
|
bind_filter argument is chan...
|
728 | |
version 0.0901
|
729 |
You can also set IP address like '127.03.45.12'. |
add port and host method
|
730 | |
731 |
=head2 port |
|
732 | ||
update document
|
733 |
Port number |
bind_filter argument is chan...
|
734 | |
version 0.0901
|
735 |
$dbi = $dbi->port(1198); |
736 |
$port = $dbi->port; |
|
add port and host method
|
737 | |
version 0.0901
|
738 |
=head2 options |
packaging one directory
|
739 | |
update document
|
740 |
DBI options |
packaging one directory
|
741 | |
version 0.0901
|
742 |
$dbi = $dbi->options({PrintError => 0, RaiseError => 1}); |
743 |
$options = $dbi->options; |
|
packaging one directory
|
744 | |
version 0.0901
|
745 |
=head2 sql_tmpl |
packaging one directory
|
746 | |
many many changes
|
747 |
SQLTemplate object |
packaging one directory
|
748 | |
many many changes
|
749 |
$dbi = $dbi->sql_tmpl(DBIx::Cutom::SQLTemplate->new); |
version 0.0901
|
750 |
$sql_tmpl = $dbi->sql_tmpl; |
packaging one directory
|
751 | |
many many changes
|
752 |
See also L<DBIx::Custom::SQLTemplate>. |
packaging one directory
|
753 | |
bind_filter argument is chan...
|
754 |
=head2 filters |
packaging one directory
|
755 | |
update document
|
756 |
Filters |
packaging one directory
|
757 | |
version 0.0901
|
758 |
$dbi = $dbi->filters({filter1 => sub { }, filter2 => sub {}}); |
759 |
$filters = $dbi->filters; |
|
packaging one directory
|
760 |
|
version 0.0901
|
761 |
This method is generally used to get a filter. |
762 | ||
763 |
$filter = $dbi->filters->{encode_utf8}; |
|
764 | ||
some changed
|
765 |
If you add filter, use register_filter method. |
packaging one directory
|
766 | |
bind_filter argument is chan...
|
767 |
=head2 formats |
packaging one directory
|
768 | |
update document
|
769 |
Formats |
packaging one directory
|
770 | |
version 0.0901
|
771 |
$dbi = $dbi->formats({format1 => sub { }, format2 => sub {}}); |
772 |
$formats = $dbi->formats; |
|
bind_filter argument is chan...
|
773 | |
version 0.0901
|
774 |
This method is generally used to get a format. |
bind_filter argument is chan...
|
775 | |
version 0.0901
|
776 |
$filter = $dbi->formats->{datetime}; |
777 | ||
some changed
|
778 |
If you add format, use register_format method. |
packaging one directory
|
779 | |
rename bind_filter to query_...
|
780 |
=head2 default_query_filter |
packaging one directory
|
781 | |
update document
|
782 |
Binding filter |
packaging one directory
|
783 | |
rename bind_filter to query_...
|
784 |
$dbi = $dbi->default_query_filter($default_query_filter); |
785 |
$default_query_filter = $dbi->default_query_filter |
|
packaging one directory
|
786 | |
rename query() to execute()
|
787 |
The following is bind filter example |
cleanup
|
788 |
|
some changed
|
789 |
$dbi->register_filter(encode_utf8 => sub { |
cleanup
|
790 |
my $value = shift; |
bind_filter argument is chan...
|
791 |
|
cleanup
|
792 |
require Encode 'encode_utf8'; |
bind_filter argument is chan...
|
793 |
|
cleanup
|
794 |
return encode_utf8($value); |
bind_filter argument is chan...
|
795 |
}); |
cleanup
|
796 |
|
rename bind_filter to query_...
|
797 |
$dbi->default_query_filter('encode_utf8') |
packaging one directory
|
798 | |
version 0.0901
|
799 |
Bind filter arguemts is |
800 | ||
801 |
1. $value : Value |
|
802 |
2. $key : Key |
|
803 |
3. $dbi : DBIx::Custom object |
|
804 |
4. $infos : {table => $table, column => $column} |
|
805 | ||
cleanup
|
806 |
=head2 default_fetch_filter |
packaging one directory
|
807 | |
update document
|
808 |
Fetching filter |
bind_filter argument is chan...
|
809 | |
cleanup
|
810 |
$dbi = $dbi->default_fetch_filter($default_fetch_filter); |
811 |
$default_fetch_filter = $dbi->default_fetch_filter; |
|
bind_filter argument is chan...
|
812 | |
rename query() to execute()
|
813 |
The following is fetch filter example |
packaging one directory
|
814 | |
some changed
|
815 |
$dbi->register_filter(decode_utf8 => sub { |
cleanup
|
816 |
my $value = shift; |
bind_filter argument is chan...
|
817 |
|
cleanup
|
818 |
require Encode 'decode_utf8'; |
bind_filter argument is chan...
|
819 |
|
cleanup
|
820 |
return decode_utf8($value); |
bind_filter argument is chan...
|
821 |
}); |
packaging one directory
|
822 | |
cleanup
|
823 |
$dbi->default_fetch_filter('decode_utf8'); |
824 | ||
version 0.0901
|
825 |
Bind filter arguemts is |
826 | ||
827 |
1. $value : Value |
|
828 |
2. $key : Key |
|
829 |
3. $dbi : DBIx::Custom object |
|
830 |
4. $infos : {type => $table, sth => $sth, index => $index} |
|
831 | ||
packaging one directory
|
832 |
=head2 result_class |
833 | ||
update document
|
834 |
Resultset class |
bind_filter argument is chan...
|
835 | |
version 0.0901
|
836 |
$dbi = $dbi->result_class('DBIx::Custom::Result'); |
packaging one directory
|
837 |
$result_class = $dbi->result_class; |
838 | ||
update document
|
839 |
Default is L<DBIx::Custom::Result> |
840 | ||
packaging one directory
|
841 |
=head2 dbh |
842 | ||
update document
|
843 |
Database handle |
bind_filter argument is chan...
|
844 |
|
version 0.0901
|
845 |
$dbi = $dbi->dbh($dbh); |
846 |
$dbh = $dbi->dbh; |
|
bind_filter argument is chan...
|
847 |
|
848 |
=head2 query_cache_max |
|
849 | ||
update document
|
850 |
Query cache max |
bind_filter argument is chan...
|
851 | |
version 0.0901
|
852 |
$class = DBIx::Custom->query_cache_max(50); |
853 |
$query_cache_max = DBIx::Custom->query_cache_max; |
|
854 | ||
855 |
Default value is 50 |
|
856 | ||
update document
|
857 |
=head1 METHODS |
858 | ||
859 |
This class is L<Object::Simple> subclass. |
|
860 |
You can use all methods of L<Object::Simple> |
|
packaging one directory
|
861 | |
862 |
=head2 connect |
|
863 | ||
bind_filter argument is chan...
|
864 |
Connect to database |
865 | ||
packaging one directory
|
866 |
$dbi->connect; |
867 | ||
868 |
=head2 disconnect |
|
869 | ||
bind_filter argument is chan...
|
870 |
Disconnect database |
871 | ||
packaging one directory
|
872 |
$dbi->disconnect; |
873 | ||
version 0.0901
|
874 |
If database is already disconnected, this method do nothing. |
packaging one directory
|
875 | |
876 |
=head2 reconnect |
|
877 | ||
bind_filter argument is chan...
|
878 |
Reconnect to database |
879 | ||
packaging one directory
|
880 |
$dbi->reconnect; |
881 | ||
882 |
=head2 connected |
|
883 | ||
version 0.0901
|
884 |
Check if database is connected. |
bind_filter argument is chan...
|
885 |
|
version 0.0901
|
886 |
$is_connected = $dbi->connected; |
packaging one directory
|
887 |
|
some changed
|
888 |
=head2 register_filter |
packaging one directory
|
889 | |
bind_filter argument is chan...
|
890 |
Resist filter |
packaging one directory
|
891 |
|
some changed
|
892 |
$dbi->register_filter($fname1 => $filter1, $fname => $filter2); |
bind_filter argument is chan...
|
893 |
|
some changed
|
894 |
The following is register_filter example |
version 0.0901
|
895 | |
some changed
|
896 |
$dbi->register_filter( |
packaging one directory
|
897 |
encode_utf8 => sub { |
bind_filter argument is chan...
|
898 |
my ($value, $key, $dbi, $infos) = @_; |
899 |
utf8::upgrade($value) unless Encode::is_utf8($value); |
|
900 |
return encode('UTF-8', $value); |
|
packaging one directory
|
901 |
}, |
bind_filter argument is chan...
|
902 |
decode_utf8 => sub { |
903 |
my ($value, $key, $dbi, $infos) = @_; |
|
904 |
return decode('UTF-8', $value) |
|
packaging one directory
|
905 |
} |
906 |
); |
|
907 | ||
some changed
|
908 |
=head2 register_format |
packaging one directory
|
909 | |
version 0.0901
|
910 |
Add format |
bind_filter argument is chan...
|
911 | |
some changed
|
912 |
$dbi->register_format($fname1 => $format, $fname2 => $format2); |
bind_filter argument is chan...
|
913 |
|
some changed
|
914 |
The following is register_format example. |
bind_filter argument is chan...
|
915 | |
some changed
|
916 |
$dbi->register_format(date => '%Y:%m:%d', datetime => '%Y-%m-%d %H:%M:%S'); |
bind_filter argument is chan...
|
917 | |
version 0.0901
|
918 |
=head2 create_query |
bind_filter argument is chan...
|
919 |
|
version 0.0901
|
920 |
Create Query object parsing SQL template |
bind_filter argument is chan...
|
921 | |
version 0.0901
|
922 |
my $query = $dbi->create_query("select * from authors where {= name} and {= age}"); |
bind_filter argument is chan...
|
923 | |
version 0.0901
|
924 |
$query is <DBIx::Query> object. This is executed by query method as the following |
bind_filter argument is chan...
|
925 | |
rename query() to execute()
|
926 |
$dbi->execute($query, $params); |
bind_filter argument is chan...
|
927 | |
many many changes
|
928 |
If you know SQL template, see also L<DBIx::Custom::SQLTemplate>. |
bind_filter argument is chan...
|
929 | |
rename query() to execute()
|
930 |
=head2 execute |
packaging one directory
|
931 | |
version 0.0901
|
932 |
Query |
bind_filter argument is chan...
|
933 | |
rename query() to execute()
|
934 |
$result = $dbi->execute($template, $params); |
packaging one directory
|
935 | |
rename query() to execute()
|
936 |
The following is query example |
bind_filter argument is chan...
|
937 | |
rename query() to execute()
|
938 |
$result = $dbi->execute("select * from authors where {= name} and {= age}", |
packaging one directory
|
939 |
{author => 'taro', age => 19}); |
940 |
|
|
941 |
while (my @row = $result->fetch) { |
|
942 |
# do something |
|
943 |
} |
|
944 | ||
many many changes
|
945 |
If you now syntax of template, See also L<DBIx::Custom::SQLTemplate> |
version 0.0901
|
946 | |
rename query() to execute()
|
947 |
execute() return L<DBIx::Custom::Result> object |
packaging one directory
|
948 | |
remove run_transaction().
|
949 |
=head2 transaction |
packaging one directory
|
950 | |
remove run_transaction().
|
951 |
Get L<DBIx::Custom::Transaction> object, and you run a transaction. |
bind_filter argument is chan...
|
952 | |
remove run_transaction().
|
953 |
$dbi->transaction->run(sub { |
bind_filter argument is chan...
|
954 |
my $dbi = shift; |
955 |
|
|
packaging one directory
|
956 |
# do something |
957 |
}); |
|
958 | ||
959 |
If transaction is success, commit is execute. |
|
960 |
If tranzation is died, rollback is execute. |
|
961 | ||
version 0.0901
|
962 |
=head2 create_table |
963 | ||
964 |
Create table |
|
965 | ||
966 |
$dbi->create_table( |
|
967 |
'books', |
|
968 |
'name char(255)', |
|
969 |
'age int' |
|
970 |
); |
|
971 | ||
972 |
First argument is table name. Rest arguments is column definition. |
|
973 | ||
974 |
=head2 drop_table |
|
975 | ||
976 |
Drop table |
|
977 | ||
978 |
$dbi->drop_table('books'); |
|
979 | ||
packaging one directory
|
980 |
=head2 insert |
981 | ||
update document
|
982 |
Insert row |
bind_filter argument is chan...
|
983 | |
version 0.0901
|
984 |
$affected = $dbi->insert($table, \%$insert_params); |
985 |
$affected = $dbi->insert($table, \%$insert_params, $append); |
|
update document
|
986 | |
version 0.0901
|
987 |
Retrun value is affected rows count |
packaging one directory
|
988 |
|
rename query() to execute()
|
989 |
The following is insert example. |
version 0.0901
|
990 | |
packaging one directory
|
991 |
$dbi->insert('books', {title => 'Perl', author => 'Taro'}); |
992 | ||
version 0.0901
|
993 |
You can add statement. |
994 | ||
995 |
$dbi->insert('books', {title => 'Perl', author => 'Taro'}, "some statement"); |
|
996 | ||
packaging one directory
|
997 |
=head2 update |
998 | ||
update document
|
999 |
Update rows |
1000 | ||
version 0.0901
|
1001 |
$affected = $dbi->update($table, \%update_params, \%where); |
1002 |
$affected = $dbi->update($table, \%update_params, \%where, $append); |
|
1003 | ||
1004 |
Retrun value is affected rows count |
|
update document
|
1005 | |
rename query() to execute()
|
1006 |
The following is update example. |
bind_filter argument is chan...
|
1007 | |
packaging one directory
|
1008 |
$dbi->update('books', {title => 'Perl', author => 'Taro'}, {id => 5}); |
1009 | ||
version 0.0901
|
1010 |
You can add statement. |
1011 | ||
1012 |
$dbi->update('books', {title => 'Perl', author => 'Taro'}, |
|
1013 |
{id => 5}, "some statement"); |
|
1014 | ||
packaging one directory
|
1015 |
=head2 update_all |
1016 | ||
bind_filter argument is chan...
|
1017 |
Update all rows |
1018 | ||
version 0.0901
|
1019 |
$affected = $dbi->update_all($table, \%updat_params); |
update document
|
1020 | |
version 0.0901
|
1021 |
Retrun value is affected rows count |
1022 | ||
rename query() to execute()
|
1023 |
The following is update_all example. |
update document
|
1024 | |
1025 |
$dbi->update_all('books', {author => 'taro'}); |
|
packaging one directory
|
1026 | |
1027 |
=head2 delete |
|
1028 | ||
update document
|
1029 |
Delete rows |
1030 | ||
version 0.0901
|
1031 |
$affected = $dbi->delete($table, \%where); |
1032 |
$affected = $dbi->delete($table, \%where, $append); |
|
bind_filter argument is chan...
|
1033 | |
version 0.0901
|
1034 |
Retrun value is affected rows count |
packaging one directory
|
1035 |
|
rename query() to execute()
|
1036 |
The following is delete example. |
version 0.0901
|
1037 | |
update document
|
1038 |
$dbi->delete('books', {id => 5}); |
packaging one directory
|
1039 | |
version 0.0901
|
1040 |
You can add statement. |
1041 | ||
1042 |
$dbi->delete('books', {id => 5}, "some statement"); |
|
1043 | ||
packaging one directory
|
1044 |
=head2 delete_all |
1045 | ||
bind_filter argument is chan...
|
1046 |
Delete all rows |
1047 | ||
version 0.0901
|
1048 |
$affected = $dbi->delete_all($table); |
packaging one directory
|
1049 | |
version 0.0901
|
1050 |
Retrun value is affected rows count |
bind_filter argument is chan...
|
1051 | |
rename query() to execute()
|
1052 |
The following is delete_all example. |
version 0.0901
|
1053 | |
1054 |
$dbi->delete_all('books'); |
|
packaging one directory
|
1055 | |
1056 |
=head2 select |
|
1057 |
|
|
update document
|
1058 |
Select rows |
bind_filter argument is chan...
|
1059 | |
version 0.0901
|
1060 |
$resut = $dbi->select( |
packaging one directory
|
1061 |
$table, # must be string or array; |
version 0.0901
|
1062 |
\@$columns, # must be array reference. this can be ommited |
1063 |
\%$where_params, # must be hash reference. this can be ommited |
|
1064 |
$append_statement, # must be string. this can be ommited |
|
1065 |
$query_edit_callback # must be code reference. this can be ommited |
|
packaging one directory
|
1066 |
); |
update document
|
1067 | |
version 0.0901
|
1068 |
$reslt is L<DBIx::Custom::Result> object |
update document
|
1069 | |
rename query() to execute()
|
1070 |
The following is some select examples |
update document
|
1071 | |
1072 |
# select * from books; |
|
1073 |
$result = $dbi->select('books'); |
|
packaging one directory
|
1074 |
|
update document
|
1075 |
# select * from books where title = 'Perl'; |
1076 |
$result = $dbi->select('books', {title => 1}); |
|
1077 |
|
|
1078 |
# select title, author from books where id = 1 for update; |
|
1079 |
$result = $dbi->select( |
|
1080 |
'books', # table |
|
1081 |
['title', 'author'], # columns |
|
1082 |
{id => 1}, # where clause |
|
1083 |
'for update', # append statement |
|
1084 |
); |
|
1085 | ||
1086 |
You can join multi tables |
|
1087 |
|
|
1088 |
$result = $dbi->select( |
|
1089 |
['table1', 'table2'], # tables |
|
1090 |
['table1.id as table1_id', 'title'], # columns (alias is ok) |
|
1091 |
{table1.id => 1}, # where clase |
|
1092 |
"where table1.id = table2.id", # join clause (must start 'where') |
|
1093 |
); |
|
1094 | ||
1095 |
You can also edit query |
|
1096 |
|
|
packaging one directory
|
1097 |
$dbi->select( |
update document
|
1098 |
'books', |
1099 |
# column, where clause, append statement, |
|
packaging one directory
|
1100 |
sub { |
1101 |
my $query = shift; |
|
rename bind_filter to query_...
|
1102 |
$query->query_filter(sub { |
packaging one directory
|
1103 |
# ... |
1104 |
}); |
|
1105 |
} |
|
update document
|
1106 |
} |
1107 | ||
remove DBIx::Custom::Transac...
|
1108 |
=head2 run_transaction |
1109 | ||
version 0.0901
|
1110 |
=head1 DBIx::Custom default configuration |
packaging one directory
|
1111 | |
update document
|
1112 |
DBIx::Custom have DBI object. |
packaging one directory
|
1113 |
This module is work well in the following DBI condition. |
1114 | ||
1115 |
1. AutoCommit is true |
|
1116 |
2. RaiseError is true |
|
1117 | ||
1118 |
By default, Both AutoCommit and RaiseError is true. |
|
1119 |
You must not change these mode not to damage your data. |
|
1120 | ||
1121 |
If you change these mode, |
|
1122 |
you cannot get correct error message, |
|
1123 |
or run_transaction may fail. |
|
1124 | ||
version 0.0901
|
1125 |
=head1 Inheritance of DBIx::Custom |
1126 | ||
1127 |
DBIx::Custom is customizable DBI. |
|
1128 |
You can inherit DBIx::Custom and custumize attributes. |
|
1129 | ||
1130 |
package DBIx::Custom::Yours; |
|
1131 |
use base DBIx::Custom; |
|
1132 |
|
|
1133 |
my $class = __PACKAGE__; |
|
1134 |
|
|
1135 |
$class->user('your_name'); |
|
1136 |
$class->password('your_password'); |
|
1137 | ||
packaging one directory
|
1138 |
=head1 AUTHOR |
1139 | ||
1140 |
Yuki Kimoto, C<< <kimoto.yuki at gmail.com> >> |
|
1141 | ||
1142 |
Github L<http://github.com/yuki-kimoto> |
|
1143 | ||
version 0.0901
|
1144 |
I develope this module L<http://github.com/yuki-kimoto/DBIx-Custom> |
1145 | ||
packaging one directory
|
1146 |
=head1 COPYRIGHT & LICENSE |
1147 | ||
1148 |
Copyright 2009 Yuki Kimoto, all rights reserved. |
|
1149 | ||
1150 |
This program is free software; you can redistribute it and/or modify it |
|
1151 |
under the same terms as Perl itself. |
|
1152 | ||
1153 |
=cut |