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