DBIx-Custom / lib / DBIx / Custom.pm /
Newer Older
1395 lines | 35.648kb
cleanup
yuki-kimoto authored on 2009-12-22
1
package DBIx::Custom;
2

            
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
3
our $VERSION = '0.1641';
fixed DBIx::Custom::QueryBui...
yuki-kimoto authored on 2010-08-15
4

            
5
use 5.008001;
cleanup
yuki-kimoto authored on 2009-12-22
6
use strict;
7
use warnings;
8

            
remove run_transaction().
yuki-kimoto authored on 2010-01-30
9
use base 'Object::Simple';
many change
yuki-kimoto authored on 2010-02-11
10

            
packaging one directory
yuki-kimoto authored on 2009-11-16
11
use Carp 'croak';
12
use DBI;
13
use DBIx::Custom::Result;
cleanup
yuki-kimoto authored on 2010-02-11
14
use DBIx::Custom::Query;
cleanup
yuki-kimoto authored on 2010-08-05
15
use DBIx::Custom::QueryBuilder;
added experimental DBIx::Cus...
Yuki Kimoto authored on 2011-01-18
16
use DBIx::Custom::Where;
table object call dbi object...
Yuki Kimoto authored on 2011-01-25
17
use DBIx::Custom::Table;
cleanup
Yuki Kimoto authored on 2011-01-25
18
use DBIx::Custom::Tag;
update document
yuki-kimoto authored on 2010-05-27
19
use Encode qw/encode_utf8 decode_utf8/;
packaging one directory
yuki-kimoto authored on 2009-11-16
20

            
fix tests
Yuki Kimoto authored on 2011-01-13
21
__PACKAGE__->attr(
added experimental DBIx::Cus...
Yuki Kimoto authored on 2011-01-18
22
    [qw/data_source dbh password user/],
fix tests
Yuki Kimoto authored on 2011-01-13
23
    cache => 1,
table object call dbi object...
Yuki Kimoto authored on 2011-01-25
24
    dbi_option    => sub { {} },
cleanup
Yuki Kimoto authored on 2011-01-23
25
    query_builder => sub { DBIx::Custom::QueryBuilder->new },
many changed
Yuki Kimoto authored on 2011-01-23
26
    result_class  => 'DBIx::Custom::Result',
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
27
    base_table    => sub { DBIx::Custom::Table->new(dbi => shift) },
28
    safety_column_name => sub { qr/^[\w\.]*$/ }
many changed
Yuki Kimoto authored on 2011-01-23
29
);
30

            
31
__PACKAGE__->attr(
32
    cache_method => sub {
33
        sub {
34
            my $self = shift;
35
            
36
            $self->{_cached} ||= {};
37
            
38
            if (@_ > 1) {
39
                $self->{_cached}{$_[0]} = $_[1] 
40
            }
41
            else {
42
                return $self->{_cached}{$_[0]}
43
            }
44
        }
45
    }
46
);
47

            
48
__PACKAGE__->attr(
fix tests
Yuki Kimoto authored on 2011-01-13
49
    filters => sub {
50
        {
51
            encode_utf8 => sub { encode_utf8($_[0]) },
52
            decode_utf8 => sub { decode_utf8($_[0]) }
53
        }
many changed
Yuki Kimoto authored on 2011-01-23
54
    }
fix tests
Yuki Kimoto authored on 2011-01-13
55
);
cleanup
yuki-kimoto authored on 2010-10-17
56

            
added helper method
yuki-kimoto authored on 2010-10-17
57
our $AUTOLOAD;
58
sub AUTOLOAD {
59
    my $self = shift;
60

            
renamed helper to method.
Yuki Kimoto authored on 2011-01-25
61
    # Method name
62
    my ($package, $mname) = $AUTOLOAD =~ /^([\w\:]+)\:\:(\w+)$/;
added helper method
yuki-kimoto authored on 2010-10-17
63

            
renamed helper to method.
Yuki Kimoto authored on 2011-01-25
64
    # Method
65
    $self->{_methods} ||= {};
autoload DBI method
Yuki Kimoto authored on 2011-01-26
66
    my $method = $self->{_methods}->{$mname};
67
    return $self->$method(@_) if $method;
renamed helper to method.
Yuki Kimoto authored on 2011-01-25
68
    
autoload DBI method
Yuki Kimoto authored on 2011-01-26
69
    # DBI method
70
    return $self->dbh->$mname(@_);
added helper method
yuki-kimoto authored on 2010-10-17
71
}
72

            
renamed auto_filter to apply...
Yuki Kimoto authored on 2011-01-12
73
sub apply_filter {
many changed
Yuki Kimoto authored on 2011-01-23
74
    my ($self, $table, @cinfos) = @_;
75

            
76
    # Initialize filters
cleanup
Yuki Kimoto authored on 2011-01-12
77
    $self->{filter} ||= {};
many changed
Yuki Kimoto authored on 2011-01-23
78
    $self->{filter}{out} ||= {};
79
    $self->{filter}{in} ||= {};
cleanup
Yuki Kimoto authored on 2010-12-22
80
    
many changed
Yuki Kimoto authored on 2011-01-23
81
    # Create filters
82
    my $usage = "Usage: \$dbi->apply_filter(" .
83
                "TABLE, COLUMN1, {in => INFILTER1, out => OUTFILTER1}, " .
84
                "COLUMN2, {in => INFILTER2, out => OUTFILTER2}, ...)";
85

            
86
    for (my $i = 0; $i < @cinfos; $i += 2) {
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
87
        
many changed
Yuki Kimoto authored on 2011-01-23
88
        # Column
89
        my $column = $cinfos[$i];
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
90
        
many changed
Yuki Kimoto authored on 2011-01-23
91
        # Filter
92
        my $filter = $cinfos[$i + 1] || {};
93
        croak $usage unless  ref $filter eq 'HASH';
94
        foreach my $ftype (keys %$filter) {
95
            croak $usage unless $ftype eq 'in' || $ftype eq 'out'; 
96
        }
97
        my $in_filter = $filter->{in};
98
        my $out_filter = $filter->{out};
99
        
100
        # Out filter
101
        if (ref $out_filter eq 'CODE') {
102
            $self->{filter}{out}{$table}{$column}
103
              = $out_filter;
104
            $self->{filter}{out}{$table}{"$table.$column"}
105
              = $out_filter;
106
        }
107
        elsif (defined $out_filter) {
108
            croak qq{Filter "$out_filter" is not registered}
109
              unless exists $self->filters->{$out_filter};
cleanup
Yuki Kimoto authored on 2010-12-22
110
            
many changed
Yuki Kimoto authored on 2011-01-23
111
            $self->{filter}{out}{$table}{$column}
112
              = $self->filters->{$out_filter};
113
            $self->{filter}{out}{$table}{"$table.$column"}
114
              = $self->filters->{$out_filter};
cleanup
Yuki Kimoto authored on 2010-12-21
115
        }
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
116
        
many changed
Yuki Kimoto authored on 2011-01-23
117
        # In filter
118
        if (ref $in_filter eq 'CODE') {
119
            $self->{filter}{in}{$table}{$column}
120
              = $in_filter;
121
            $self->{filter}{in}{$table}{"$table.$column"}
122
              = $in_filter;
123
        }
124
        elsif (defined $in_filter) {
125
            croak qq{Filter "$in_filter" is not registered}
126
              unless exists $self->filters->{$in_filter};
127
            $self->{filter}{in}{$table}{$column}
128
              = $self->filters->{$in_filter};
129
            $self->{filter}{in}{$table}{"$table.$column"}
130
              = $self->filters->{$in_filter};
131
        }
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
132
    }
133
    
many changed
Yuki Kimoto authored on 2011-01-23
134
    return $self;
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
135
}
136

            
renamed helper to method.
Yuki Kimoto authored on 2011-01-25
137
sub method {
added helper method
yuki-kimoto authored on 2010-10-17
138
    my $self = shift;
139
    
140
    # Merge
renamed helper to method.
Yuki Kimoto authored on 2011-01-25
141
    my $methods = ref $_[0] eq 'HASH' ? $_[0] : {@_};
142
    $self->{_methods} = {%{$self->{_methods} || {}}, %$methods};
added helper method
yuki-kimoto authored on 2010-10-17
143
    
144
    return $self;
145
}
146

            
packaging one directory
yuki-kimoto authored on 2009-11-16
147
sub connect {
cleanup
Yuki Kimoto authored on 2011-01-25
148
    my $self = ref $_[0] ? shift : shift->new(@_);;
removed register_format()
yuki-kimoto authored on 2010-05-26
149
    
many changed
Yuki Kimoto authored on 2011-01-23
150
    # Attributes
packaging one directory
yuki-kimoto authored on 2009-11-16
151
    my $data_source = $self->data_source;
many changed
Yuki Kimoto authored on 2011-01-23
152
    croak qq{"data_source" must be specified to connect()"}
check arguments of connect m...
Yuki Kimoto authored on 2010-12-20
153
      unless $data_source;
packaging one directory
yuki-kimoto authored on 2009-11-16
154
    my $user        = $self->user;
155
    my $password    = $self->password;
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
156
    my $dbi_option = {%{$self->dbi_options}, %{$self->dbi_option}};
added dbi_options attribute
kimoto authored on 2010-12-20
157
    
update document
yuki-kimoto authored on 2010-01-30
158
    # Connect
select, insert, update, upda...
yuki-kimoto authored on 2010-06-14
159
    my $dbh = eval {DBI->connect(
packaging one directory
yuki-kimoto authored on 2009-11-16
160
        $data_source,
161
        $user,
162
        $password,
163
        {
164
            RaiseError => 1,
165
            PrintError => 0,
166
            AutoCommit => 1,
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
167
            %$dbi_option
packaging one directory
yuki-kimoto authored on 2009-11-16
168
        }
169
    )};
170
    
update document
yuki-kimoto authored on 2010-01-30
171
    # Connect error
packaging one directory
yuki-kimoto authored on 2009-11-16
172
    croak $@ if $@;
173
    
update document
yuki-kimoto authored on 2010-01-30
174
    # Database handle
packaging one directory
yuki-kimoto authored on 2009-11-16
175
    $self->dbh($dbh);
update document
yuki-kimoto authored on 2010-01-30
176
    
packaging one directory
yuki-kimoto authored on 2009-11-16
177
    return $self;
178
}
179

            
cleanup
yuki-kimoto authored on 2010-10-17
180
sub create_query {
181
    my ($self, $source) = @_;
update document
yuki-kimoto authored on 2010-01-30
182
    
cleanup
yuki-kimoto authored on 2010-10-17
183
    # Cache
184
    my $cache = $self->cache;
update document
yuki-kimoto authored on 2010-01-30
185
    
cleanup
yuki-kimoto authored on 2010-10-17
186
    # Create query
187
    my $query;
188
    if ($cache) {
189
        
190
        # Get query
191
        my $q = $self->cache_method->($self, $source);
192
        
193
        # Create query
194
        $query = DBIx::Custom::Query->new($q) if $q;
195
    }
196
    
197
    unless ($query) {
cleanup insert
yuki-kimoto authored on 2010-04-28
198

            
cleanup
yuki-kimoto authored on 2010-10-17
199
        # Create SQL object
200
        my $builder = $self->query_builder;
201
        
202
        # Create query
203
        $query = $builder->build_query($source);
removed register_format()
yuki-kimoto authored on 2010-05-26
204

            
cleanup
yuki-kimoto authored on 2010-10-17
205
        # Cache query
206
        $self->cache_method->($self, $source,
207
                             {sql     => $query->sql, 
208
                              columns => $query->columns})
209
          if $cache;
cleanup insert
yuki-kimoto authored on 2010-04-28
210
    }
211
    
cleanup
yuki-kimoto authored on 2010-10-17
212
    # Prepare statement handle
213
    my $sth;
214
    eval { $sth = $self->dbh->prepare($query->{sql})};
renamed DBIx::Custom::TagPro...
Yuki Kimoto authored on 2011-01-24
215
    $self->_croak($@, qq{. Following SQL is executed. "$query->{sql}"}) if $@;
packaging one directory
yuki-kimoto authored on 2009-11-16
216
    
cleanup
yuki-kimoto authored on 2010-10-17
217
    # Set statement handle
218
    $query->sth($sth);
packaging one directory
yuki-kimoto authored on 2009-11-16
219
    
cleanup
yuki-kimoto authored on 2010-10-17
220
    return $query;
packaging one directory
yuki-kimoto authored on 2009-11-16
221
}
222

            
cleanup
yuki-kimoto authored on 2010-10-17
223
our %VALID_DELETE_ARGS
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
224
  = map { $_ => 1 } qw/table where append filter allow_delete_all query/;
cleanup update and update_al...
yuki-kimoto authored on 2010-04-28
225

            
cleanup
yuki-kimoto authored on 2010-10-17
226
sub delete {
select, insert, update, upda...
yuki-kimoto authored on 2010-06-14
227
    my ($self, %args) = @_;
cleanup update and update_al...
yuki-kimoto authored on 2010-04-28
228
    
229
    # Check arguments
select, insert, update, upda...
yuki-kimoto authored on 2010-06-14
230
    foreach my $name (keys %args) {
add tests
yuki-kimoto authored on 2010-08-10
231
        croak qq{"$name" is invalid argument}
cleanup
yuki-kimoto authored on 2010-10-17
232
          unless $VALID_DELETE_ARGS{$name};
cleanup update and update_al...
yuki-kimoto authored on 2010-04-28
233
    }
234
    
235
    # Arguments
select, insert, update, upda...
yuki-kimoto authored on 2010-06-14
236
    my $table            = $args{table} || '';
added table not specified ex...
Yuki Kimoto authored on 2011-01-21
237
    croak qq{"table" option must be specified} unless $table;
select, insert, update, upda...
yuki-kimoto authored on 2010-06-14
238
    my $where            = $args{where} || {};
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
239
    my $append           = $args{append};
select, insert, update, upda...
yuki-kimoto authored on 2010-06-14
240
    my $filter           = $args{filter};
cleanup
yuki-kimoto authored on 2010-10-17
241
    my $allow_delete_all = $args{allow_delete_all};
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
242

            
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
243
    # Where
244
    my $w;
245
    if (ref $where eq 'HASH') {
246
        my $clause = ['and'];
247
        push @$clause, "{= $_}" for keys %$where;
248
        $w = $self->where;
249
        $w->clause($clause);
improved delete() and update...
Yuki Kimoto authored on 2011-01-26
250
        $w->param($where);
packaging one directory
yuki-kimoto authored on 2009-11-16
251
    }
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
252
    elsif (ref $where eq 'DBIx::Custom::Where') {
253
        $w = $where;
254
        $where = $w->param;
255
    }    
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
256
    croak qq{"where" must be hash refernce or DBIx::Custom::Where object}
257
      unless ref $w eq 'DBIx::Custom::Where';
258
    
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
259
    # String where
260
    my $swhere = "$w";
improved delete() and update...
Yuki Kimoto authored on 2011-01-26
261
    
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
262
    croak qq{"where" must be specified}
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
263
      if $swhere eq '' && !$allow_delete_all;
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
264

            
cleanup
Yuki Kimoto authored on 2011-01-27
265
    # SQL stack
266
    my @sql;
267

            
268
    # Delete
269
    push @sql, "delete from $table $swhere";
270
    push @sql, $append if $append;
271
    
272
    my $sql = join(' ', @sql);
packaging one directory
yuki-kimoto authored on 2009-11-16
273
    
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
274
    # Create query
cleanup
Yuki Kimoto authored on 2011-01-27
275
    my $query = $self->create_query($sql);
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
276
    return $query if $args{query};
277
    
packaging one directory
yuki-kimoto authored on 2009-11-16
278
    # Execute query
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
279
    my $ret_val = $self->execute(
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
280
        $query, param  => $where, filter => $filter,
renamed auto_filter to apply...
Yuki Kimoto authored on 2011-01-12
281
        table => $table);
packaging one directory
yuki-kimoto authored on 2009-11-16
282
    
283
    return $ret_val;
284
}
285

            
cleanup
yuki-kimoto authored on 2010-10-17
286
sub delete_all { shift->delete(allow_delete_all => 1, @_) }
packaging one directory
yuki-kimoto authored on 2009-11-16
287

            
added helper method
yuki-kimoto authored on 2010-10-17
288
sub DESTROY { }
289

            
renamed auto_filter to apply...
Yuki Kimoto authored on 2011-01-12
290
our %VALID_EXECUTE_ARGS = map { $_ => 1 } qw/param filter table/;
refactoring delete and delet...
yuki-kimoto authored on 2010-04-28
291

            
cleanup
yuki-kimoto authored on 2010-10-17
292
sub execute{
293
    my ($self, $query, %args)  = @_;
refactoring delete and delet...
yuki-kimoto authored on 2010-04-28
294
    
295
    # Check arguments
select, insert, update, upda...
yuki-kimoto authored on 2010-06-14
296
    foreach my $name (keys %args) {
add tests
yuki-kimoto authored on 2010-08-10
297
        croak qq{"$name" is invalid argument}
cleanup
yuki-kimoto authored on 2010-10-17
298
          unless $VALID_EXECUTE_ARGS{$name};
refactoring delete and delet...
yuki-kimoto authored on 2010-04-28
299
    }
300
    
cleanup
yuki-kimoto authored on 2010-10-17
301
    my $params = $args{param} || {};
packaging one directory
yuki-kimoto authored on 2009-11-16
302
    
cleanup
yuki-kimoto authored on 2010-10-17
303
    # First argument is the soruce of SQL
304
    $query = $self->create_query($query)
305
      unless ref $query;
packaging one directory
yuki-kimoto authored on 2009-11-16
306
    
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
307
    # Auto filter
cleanup
Yuki Kimoto authored on 2011-01-12
308
    my $filter = {};
renamed auto_filter to apply...
Yuki Kimoto authored on 2011-01-12
309
    my $tables = $args{table} || [];
310
    $tables = [$tables]
311
      unless ref $tables eq 'ARRAY';
312
    foreach my $table (@$tables) {
cleanup
Yuki Kimoto authored on 2011-01-12
313
        $filter = {
314
            %$filter,
315
            %{$self->{filter}{out}->{$table} || {}}
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
316
        }
317
    }
318
    
cleanup
Yuki Kimoto authored on 2011-01-12
319
    # Filter argument
320
    my $f = $args{filter} || $query->filter || {};
321
    foreach my $column (keys %$f) {
322
        my $fname = $f->{$column};
renamed auto_filter to apply...
Yuki Kimoto authored on 2011-01-12
323
        if (!defined $fname) {
cleanup
Yuki Kimoto authored on 2011-01-12
324
            $f->{$column} = undef;
renamed auto_filter to apply...
Yuki Kimoto authored on 2011-01-12
325
        }
326
        elsif (ref $fname ne 'CODE') {
many changed
Yuki Kimoto authored on 2011-01-23
327
          croak qq{Filter "$fname" is not registered"}
cleanup
Yuki Kimoto authored on 2010-12-21
328
            unless exists $self->filters->{$fname};
329
          
cleanup
Yuki Kimoto authored on 2011-01-12
330
          $f->{$column} = $self->filters->{$fname};
cleanup
Yuki Kimoto authored on 2010-12-21
331
        }
332
    }
cleanup
Yuki Kimoto authored on 2011-01-12
333
    $filter = {%$filter, %$f};
packaging one directory
yuki-kimoto authored on 2009-11-16
334
    
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
335
    # Bind
336
    my $bind = $self->_bind($params, $query->columns, $filter);
cleanup
yuki-kimoto authored on 2010-10-17
337
    
338
    # Execute
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
339
    my $sth = $query->sth;
cleanup
yuki-kimoto authored on 2010-10-17
340
    my $affected;
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
341
    eval {$affected = $sth->execute(@$bind)};
renamed DBIx::Custom::TagPro...
Yuki Kimoto authored on 2011-01-24
342
    $self->_croak($@, qq{. Following SQL is executed. "$query->{sql}"}) if $@;
cleanup
yuki-kimoto authored on 2010-10-17
343
    
344
    # Return resultset if select statement is executed
345
    if ($sth->{NUM_OF_FIELDS}) {
346
        
cleanup
Yuki Kimoto authored on 2011-01-12
347
        # Auto in filter
cleanup
Yuki Kimoto authored on 2011-01-12
348
        my $in_filter = {};
349
        foreach my $table (@$tables) {
350
            $in_filter = {
351
                %$in_filter,
352
                %{$self->{filter}{in}{$table} || {}}
353
            }
354
        }
355
        
356
        # Result
357
        my $result = $self->result_class->new(
cleanup
Yuki Kimoto authored on 2010-12-22
358
            sth            => $sth,
359
            filters        => $self->filters,
360
            filter_check   => $self->filter_check,
cleanup
Yuki Kimoto authored on 2011-01-12
361
            default_filter => $self->{default_in_filter},
cleanup
Yuki Kimoto authored on 2011-01-12
362
            filter         => $in_filter || {}
cleanup
yuki-kimoto authored on 2010-10-17
363
        );
364

            
365
        return $result;
366
    }
367
    return $affected;
368
}
369

            
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
370
our %VALID_INSERT_ARGS = map { $_ => 1 } qw/table param append
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
371
                                            filter query/;
cleanup
yuki-kimoto authored on 2010-10-17
372
sub insert {
373
    my ($self, %args) = @_;
374

            
375
    # Check arguments
376
    foreach my $name (keys %args) {
377
        croak qq{"$name" is invalid argument}
378
          unless $VALID_INSERT_ARGS{$name};
packaging one directory
yuki-kimoto authored on 2009-11-16
379
    }
380
    
cleanup
yuki-kimoto authored on 2010-10-17
381
    # Arguments
added table not specified ex...
Yuki Kimoto authored on 2011-01-21
382
    my $table  = $args{table};
383
    croak qq{"table" option must be specified} unless $table;
cleanup
yuki-kimoto authored on 2010-10-17
384
    my $param  = $args{param} || {};
385
    my $append = $args{append} || '';
386
    my $filter = $args{filter};
387
    
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
388
    # Columns
389
    my @columns;
390
    my $safety = $self->safety_column_name;
391
    foreach my $column (keys %$param) {
392
        croak qq{"$column" is not safety column name}
393
          unless $column =~ /$safety/;
394
        push @columns, $column;
395
    }
cleanup
yuki-kimoto authored on 2010-10-17
396
    
cleanup
Yuki Kimoto authored on 2011-01-27
397
    # SQL stack
398
    my @sql;
399
    
400
    # Insert
401
    push @sql, "insert into $table {insert_param ". join(' ', @columns) . '}';
402
    push @sql, $append if $append;
403
    
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
404
    # SQL
cleanup
Yuki Kimoto authored on 2011-01-27
405
    my $sql = join (' ', @sql);
packaging one directory
yuki-kimoto authored on 2009-11-16
406
    
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
407
    # Create query
cleanup
Yuki Kimoto authored on 2011-01-27
408
    my $query = $self->create_query($sql);
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
409
    return $query if $args{query};
410
    
packaging one directory
yuki-kimoto authored on 2009-11-16
411
    # Execute query
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
412
    my $ret_val = $self->execute(
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
413
        $query,
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
414
        param  => $param,
415
        filter => $filter,
renamed auto_filter to apply...
Yuki Kimoto authored on 2011-01-12
416
        table => $table
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
417
    );
packaging one directory
yuki-kimoto authored on 2009-11-16
418
    
419
    return $ret_val;
420
}
421

            
pod fix
Yuki Kimoto authored on 2011-01-21
422
sub each_column {
added experimental iterate_a...
Yuki Kimoto authored on 2010-12-22
423
    my ($self, $cb) = @_;
424
    
425
    # Iterate all tables
426
    my $sth_tables = $self->dbh->table_info;
427
    while (my $table_info = $sth_tables->fetchrow_hashref) {
428
        
429
        # Table
430
        my $table = $table_info->{TABLE_NAME};
431
        
432
        # Iterate all columns
433
        my $sth_columns = $self->dbh->column_info(undef, undef, $table, '%');
434
        while (my $column_info = $sth_columns->fetchrow_hashref) {
435
            my $column = $column_info->{COLUMN_NAME};
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
436
            $self->$cb($table, $column, $column_info);
added experimental iterate_a...
Yuki Kimoto authored on 2010-12-22
437
        }
438
    }
439
}
440

            
added dbi_options attribute
kimoto authored on 2010-12-20
441
sub new {
442
    my $self = shift->SUPER::new(@_);
443
    
444
    # Check attribute names
445
    my @attrs = keys %$self;
446
    foreach my $attr (@attrs) {
447
        croak qq{"$attr" is invalid attribute name}
448
          unless $self->can($attr);
449
    }
cleanup
Yuki Kimoto authored on 2011-01-25
450

            
451
    $self->register_tag(
452
        '?'     => \&DBIx::Custom::Tag::placeholder,
453
        '='     => \&DBIx::Custom::Tag::equal,
454
        '<>'    => \&DBIx::Custom::Tag::not_equal,
455
        '>'     => \&DBIx::Custom::Tag::greater_than,
456
        '<'     => \&DBIx::Custom::Tag::lower_than,
457
        '>='    => \&DBIx::Custom::Tag::greater_than_equal,
458
        '<='    => \&DBIx::Custom::Tag::lower_than_equal,
459
        'like'  => \&DBIx::Custom::Tag::like,
460
        'in'    => \&DBIx::Custom::Tag::in,
461
        'insert_param' => \&DBIx::Custom::Tag::insert_param,
462
        'update_param' => \&DBIx::Custom::Tag::update_param
463
    );
added dbi_options attribute
kimoto authored on 2010-12-20
464
    
465
    return $self;
466
}
467

            
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
468
sub not_exists { bless {}, 'DBIx::Custom::NotExists' }
469

            
cleanup
yuki-kimoto authored on 2010-10-17
470
sub register_filter {
471
    my $invocant = shift;
472
    
473
    # Register filter
474
    my $filters = ref $_[0] eq 'HASH' ? $_[0] : {@_};
475
    $invocant->filters({%{$invocant->filters}, %$filters});
476
    
477
    return $invocant;
478
}
packaging one directory
yuki-kimoto authored on 2009-11-16
479

            
renamed DBIx::Custom::TagPro...
Yuki Kimoto authored on 2011-01-24
480
sub register_tag { shift->query_builder->register_tag(@_) }
added register_tag_processor
Yuki Kimoto authored on 2011-01-20
481

            
refactoring select
yuki-kimoto authored on 2010-04-28
482
our %VALID_SELECT_ARGS
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
483
  = map { $_ => 1 } qw/table column where append relation filter query/;
refactoring select
yuki-kimoto authored on 2010-04-28
484

            
packaging one directory
yuki-kimoto authored on 2009-11-16
485
sub select {
select, insert, update, upda...
yuki-kimoto authored on 2010-06-14
486
    my ($self, %args) = @_;
packaging one directory
yuki-kimoto authored on 2009-11-16
487
    
refactoring select
yuki-kimoto authored on 2010-04-28
488
    # Check arguments
select, insert, update, upda...
yuki-kimoto authored on 2010-06-14
489
    foreach my $name (keys %args) {
add tests
yuki-kimoto authored on 2010-08-10
490
        croak qq{"$name" is invalid argument}
refactoring select
yuki-kimoto authored on 2010-04-28
491
          unless $VALID_SELECT_ARGS{$name};
492
    }
packaging one directory
yuki-kimoto authored on 2009-11-16
493
    
refactoring select
yuki-kimoto authored on 2010-04-28
494
    # Arguments
added table not specified ex...
Yuki Kimoto authored on 2011-01-21
495
    my $table = $args{table};
496
    my $tables = ref $table eq 'ARRAY' ? $table
497
               : defined $table ? [$table]
498
               : [];
499
    croak qq{"table" option must be specified} unless @$tables;
select, insert, update, upda...
yuki-kimoto authored on 2010-06-14
500
    my $columns  = $args{column} || [];
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
501
    my $where    = $args{where} || {};
select, insert, update, upda...
yuki-kimoto authored on 2010-06-14
502
    my $relation = $args{relation};
503
    my $append   = $args{append};
504
    my $filter   = $args{filter};
packaging one directory
yuki-kimoto authored on 2009-11-16
505
    
cleanup
Yuki Kimoto authored on 2011-01-27
506
    # SQL stack
507
    my @sql;
508
    
509
    push @sql, 'select';
packaging one directory
yuki-kimoto authored on 2009-11-16
510
    
added commit method
yuki-kimoto authored on 2010-05-27
511
    # Column clause
packaging one directory
yuki-kimoto authored on 2009-11-16
512
    if (@$columns) {
513
        foreach my $column (@$columns) {
cleanup
Yuki Kimoto authored on 2011-01-27
514
            push @sql, ($column, ',');
packaging one directory
yuki-kimoto authored on 2009-11-16
515
        }
cleanup
Yuki Kimoto authored on 2011-01-27
516
        pop @sql if $sql[-1] eq ',';
packaging one directory
yuki-kimoto authored on 2009-11-16
517
    }
cleanup
Yuki Kimoto authored on 2011-01-27
518
    else { push @sql, '*' }
packaging one directory
yuki-kimoto authored on 2009-11-16
519
    
added commit method
yuki-kimoto authored on 2010-05-27
520
    # Table
cleanup
Yuki Kimoto authored on 2011-01-27
521
    push @sql, 'from';
packaging one directory
yuki-kimoto authored on 2009-11-16
522
    foreach my $table (@$tables) {
cleanup
Yuki Kimoto authored on 2011-01-27
523
        push @sql, ($table, ',');
packaging one directory
yuki-kimoto authored on 2009-11-16
524
    }
cleanup
Yuki Kimoto authored on 2011-01-27
525
    pop @sql if $sql[-1] eq ',';
packaging one directory
yuki-kimoto authored on 2009-11-16
526
    
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
527
    # Where
528
    my $w;
added experimental DBIx::Cus...
Yuki Kimoto authored on 2011-01-18
529
    if (ref $where eq 'HASH') {
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
530
        my $clause = ['and'];
531
        push @$clause, "{= $_}" for keys %$where;
532
        $w = $self->where;
533
        $w->clause($clause);
534
        $w->param($where);
added experimental DBIx::Cus...
Yuki Kimoto authored on 2011-01-18
535
    }
536
    elsif (ref $where eq 'DBIx::Custom::Where') {
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
537
        $w = $where;
538
        $where = $w->param;
packaging one directory
yuki-kimoto authored on 2009-11-16
539
    }
540
    
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
541
    croak qq{"where" must be hash reference or DBIx::Custom::Where object}
542
      unless ref $w eq 'DBIx::Custom::Where';
543
    
544
    # String where
545
    my $swhere = "$w";
cleanup
Yuki Kimoto authored on 2011-01-27
546
    push @sql, $swhere;
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
547
    
added commit method
yuki-kimoto authored on 2010-05-27
548
    # Relation
549
    if ($relation) {
cleanup
Yuki Kimoto authored on 2011-01-27
550
        push @sql, $swhere eq '' ? 'where' : 'and';
551
        foreach my $rcolumn (keys %$relation) {
552
            push @sql, ("$rcolumn = " . $relation->{$rcolumn},  'and');
packaging one directory
yuki-kimoto authored on 2009-11-16
553
        }
554
    }
cleanup
Yuki Kimoto authored on 2011-01-27
555
    pop @sql if $sql[-1] eq 'and';
added commit method
yuki-kimoto authored on 2010-05-27
556
    
cleanup
Yuki Kimoto authored on 2011-01-27
557
    # Append statement
558
    push @sql, $append if $append;
559
    
560
    # SQL
561
    my $sql = join (' ', @sql);
packaging one directory
yuki-kimoto authored on 2009-11-16
562
    
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
563
    # Create query
cleanup
Yuki Kimoto authored on 2011-01-27
564
    my $query = $self->create_query($sql);
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
565
    return $query if $args{query};
566
    
packaging one directory
yuki-kimoto authored on 2009-11-16
567
    # Execute query
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
568
    my $result = $self->execute(
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
569
        $query, param  => $where, filter => $filter,
570
        table => $tables);
packaging one directory
yuki-kimoto authored on 2009-11-16
571
    
572
    return $result;
573
}
574

            
remove DBIx::Custom::Model
Yuki Kimoto authored on 2011-01-12
575
sub table {
576
    my $self = shift;
577
    my $name = shift;
578
    
579
    # Create table
580
    $self->{_tables} ||= {};
table object call dbi object...
Yuki Kimoto authored on 2011-01-25
581
    unless (defined $self->{_tables}->{$name}) {
582
        # Base table
583
        my $base_table = $self->base_table;
584
        
585
        # Base methods
586
        my $bmethods = ref $base_table->{_methods} eq 'HASH'
587
                     ? $base_table->{_methods}
588
                     : {};
589
        
590
        # Copy Methods
591
        my $methods = {};
592
        $methods->{$_} = $bmethods->{$_} for keys %$bmethods;
593
        
594
        # Create table
595
        my $table = $base_table->new(
596
            dbi      => $self,
597
            name     => $name,
598
            base     => $base_table,
599
            _methods => $methods
600
        );
601
        $self->{_tables}->{$name} = $table;
602
    }
remove DBIx::Custom::Model
Yuki Kimoto authored on 2011-01-12
603
    
604
    return $self->{_tables}{$name};
605
}
606

            
cleanup
yuki-kimoto authored on 2010-10-17
607
our %VALID_UPDATE_ARGS
renamed auto_filter to apply...
Yuki Kimoto authored on 2011-01-12
608
  = map { $_ => 1 } qw/table param
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
609
                       where append filter allow_update_all query/;
cleanup
yuki-kimoto authored on 2010-10-17
610

            
611
sub update {
612
    my ($self, %args) = @_;
version 0.0901
yuki-kimoto authored on 2009-12-17
613
    
cleanup
yuki-kimoto authored on 2010-10-17
614
    # Check arguments
615
    foreach my $name (keys %args) {
616
        croak qq{"$name" is invalid argument}
617
          unless $VALID_UPDATE_ARGS{$name};
removed reconnect method
yuki-kimoto authored on 2010-05-28
618
    }
added cache_method attribute
yuki-kimoto authored on 2010-06-25
619
    
cleanup
yuki-kimoto authored on 2010-10-17
620
    # Arguments
621
    my $table            = $args{table} || '';
added table not specified ex...
Yuki Kimoto authored on 2011-01-21
622
    croak qq{"table" option must be specified} unless $table;
cleanup
yuki-kimoto authored on 2010-10-17
623
    my $param            = $args{param} || {};
624
    my $where            = $args{where} || {};
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
625
    my $append           = $args{append} || '';
cleanup
yuki-kimoto authored on 2010-10-17
626
    my $filter           = $args{filter};
627
    my $allow_update_all = $args{allow_update_all};
version 0.0901
yuki-kimoto authored on 2009-12-17
628
    
cleanup
yuki-kimoto authored on 2010-10-17
629
    # Update keys
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
630
    my @clumns = keys %$param;
631

            
632
    # Columns
633
    my @columns;
634
    my $safety = $self->safety_column_name;
635
    foreach my $column (keys %$param) {
636
        croak qq{"$column" is not safety column name}
637
          unless $column =~ /$safety/;
638
        push @columns, $column;
639
    }
640
        
cleanup
yuki-kimoto authored on 2010-10-17
641
    # Update clause
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
642
    my $update_clause = '{update_param ' . join(' ', @clumns) . '}';
improved delete() and update...
Yuki Kimoto authored on 2011-01-26
643

            
644
    # Where
645
    my $w;
646
    if (ref $where eq 'HASH') {
647
        my $clause = ['and'];
648
        push @$clause, "{= $_}" for keys %$where;
649
        $w = $self->where;
650
        $w->clause($clause);
651
        $w->param($where);
652
    }
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
653
    elsif (ref $where eq 'DBIx::Custom::Where') {
654
        $w = $where;
655
        $where = $w->param;
656
    }  
removed experimental registe...
yuki-kimoto authored on 2010-08-24
657
    
improved delete() and update...
Yuki Kimoto authored on 2011-01-26
658
    croak qq{"where" must be hash refernce or DBIx::Custom::Where object}
659
      unless ref $w eq 'DBIx::Custom::Where';
removed reconnect method
yuki-kimoto authored on 2010-05-28
660
    
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
661
    # String where
662
    my $swhere = "$w";
improved delete() and update...
Yuki Kimoto authored on 2011-01-26
663
    
664
    croak qq{"where" must be specified}
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
665
      if "$swhere" eq '' && !$allow_update_all;
removed reconnect method
yuki-kimoto authored on 2010-05-28
666
    
cleanup
Yuki Kimoto authored on 2011-01-27
667
    # SQL stack
668
    my @sql;
669
    
670
    # Update
671
    push @sql, "update $table $update_clause $swhere";
672
    push @sql, $append if $append;
removed reconnect method
yuki-kimoto authored on 2010-05-28
673
    
cleanup
yuki-kimoto authored on 2010-10-17
674
    # Rearrange parameters
improved delete() and update...
Yuki Kimoto authored on 2011-01-26
675
    foreach my $wkey (keys %$where) {
removed reconnect method
yuki-kimoto authored on 2010-05-28
676
        
cleanup
yuki-kimoto authored on 2010-10-17
677
        if (exists $param->{$wkey}) {
678
            $param->{$wkey} = [$param->{$wkey}]
679
              unless ref $param->{$wkey} eq 'ARRAY';
680
            
681
            push @{$param->{$wkey}}, $where->{$wkey};
682
        }
683
        else {
684
            $param->{$wkey} = $where->{$wkey};
685
        }
removed reconnect method
yuki-kimoto authored on 2010-05-28
686
    }
cleanup
yuki-kimoto authored on 2010-10-17
687
    
cleanup
Yuki Kimoto authored on 2011-01-27
688
    # SQL
689
    my $sql = join(' ', @sql);
690
    
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
691
    # Create query
cleanup
Yuki Kimoto authored on 2011-01-27
692
    my $query = $self->create_query($sql);
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
693
    return $query if $args{query};
694
    
cleanup
yuki-kimoto authored on 2010-10-17
695
    # Execute query
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
696
    my $ret_val = $self->execute($query, param  => $param, 
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
697
                                 filter => $filter,
renamed auto_filter to apply...
Yuki Kimoto authored on 2011-01-12
698
                                 table => $table);
cleanup
yuki-kimoto authored on 2010-10-17
699
    
700
    return $ret_val;
removed reconnect method
yuki-kimoto authored on 2010-05-28
701
}
702

            
cleanup
yuki-kimoto authored on 2010-10-17
703
sub update_all { shift->update(allow_update_all => 1, @_) };
704

            
cleanup
Yuki Kimoto authored on 2011-01-25
705
sub where {
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
706
    my $self = shift;
707

            
708
    return DBIx::Custom::Where->new(
709
        query_builder => $self->query_builder,
710
        safety_column_name => $self->safety_column_name
711
    );
cleanup
Yuki Kimoto authored on 2011-01-25
712
}
added experimental DBIx::Cus...
Yuki Kimoto authored on 2011-01-18
713

            
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
714
sub _bind {
cleanup
Yuki Kimoto authored on 2011-01-12
715
    my ($self, $params, $columns, $filter) = @_;
removed reconnect method
yuki-kimoto authored on 2010-05-28
716
    
cleanup
Yuki Kimoto authored on 2011-01-12
717
    # bind values
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
718
    my @bind;
add tests
yuki-kimoto authored on 2010-08-08
719
    
removed reconnect method
yuki-kimoto authored on 2010-05-28
720
    # Build bind values
721
    my $count = {};
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
722
    my $not_exists = {};
cleanup
Yuki Kimoto authored on 2011-01-12
723
    foreach my $column (@$columns) {
removed reconnect method
yuki-kimoto authored on 2010-05-28
724
        
725
        # Value
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
726
        my $value;
727
        if(ref $params->{$column} eq 'ARRAY') {
728
            my $i = $count->{$column} || 0;
729
            $i += $not_exists->{$column} || 0;
730
            my $found;
731
            for (my $k = $i; $i < @{$params->{$column}}; $k++) {
732
                if (ref $params->{$column}->[$k] eq 'DBIx::Custom::NotExists') {
733
                    $not_exists->{$column}++;
734
                }
735
                else  {
736
                    $value = $params->{$column}->[$k];
737
                    $found = 1;
738
                    last
739
                }
740
            }
741
            next unless $found;
742
        }
743
        else { $value = $params->{$column} }
removed reconnect method
yuki-kimoto authored on 2010-05-28
744
        
cleanup
Yuki Kimoto authored on 2011-01-12
745
        # Filter
746
        my $f = $filter->{$column} || $self->{default_out_filter} || '';
cleanup
kimoto.yuki@gmail.com authored on 2010-12-21
747
        
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
748
        push @bind, $f ? $f->($value) : $value;
removed reconnect method
yuki-kimoto authored on 2010-05-28
749
        
750
        # Count up 
751
        $count->{$column}++;
752
    }
753
    
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
754
    return \@bind;
removed reconnect method
yuki-kimoto authored on 2010-05-28
755
}
756

            
cleanup
yuki-kimoto authored on 2010-10-17
757
sub _croak {
758
    my ($self, $error, $append) = @_;
759
    $append ||= "";
760
    
761
    # Verbose
762
    if ($Carp::Verbose) { croak $error }
763
    
764
    # Not verbose
765
    else {
766
        
767
        # Remove line and module infromation
768
        my $at_pos = rindex($error, ' at ');
769
        $error = substr($error, 0, $at_pos);
770
        $error =~ s/\s+$//;
771
        
772
        croak "$error$append";
773
    }
774
}
775

            
cleanup
Yuki Kimoto authored on 2011-01-25
776
# DEPRECATED!
cleanup
Yuki Kimoto authored on 2011-01-23
777
__PACKAGE__->attr(
778
    dbi_options => sub { {} },
779
    filter_check  => 1
780
);
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
781

            
cleanup
Yuki Kimoto authored on 2011-01-25
782
# DEPRECATED!
cleanup
Yuki Kimoto authored on 2011-01-12
783
sub default_bind_filter {
784
    my $self = shift;
785
    
786
    if (@_) {
787
        my $fname = $_[0];
788
        
789
        if (@_ && !$fname) {
790
            $self->{default_out_filter} = undef;
791
        }
792
        else {
many changed
Yuki Kimoto authored on 2011-01-23
793
            croak qq{Filter "$fname" is not registered}
cleanup
Yuki Kimoto authored on 2011-01-12
794
              unless exists $self->filters->{$fname};
795
        
796
            $self->{default_out_filter} = $self->filters->{$fname};
797
        }
798
        return $self;
799
    }
800
    
801
    return $self->{default_out_filter};
802
}
803

            
cleanup
Yuki Kimoto authored on 2011-01-25
804
# DEPRECATED!
cleanup
Yuki Kimoto authored on 2011-01-12
805
sub default_fetch_filter {
806
    my $self = shift;
807
    
808
    if (@_) {
many changed
Yuki Kimoto authored on 2011-01-23
809
        my $fname = $_[0];
810

            
cleanup
Yuki Kimoto authored on 2011-01-12
811
        if (@_ && !$fname) {
812
            $self->{default_in_filter} = undef;
813
        }
814
        else {
many changed
Yuki Kimoto authored on 2011-01-23
815
            croak qq{Filter "$fname" is not registered}
cleanup
Yuki Kimoto authored on 2011-01-12
816
              unless exists $self->filters->{$fname};
817
        
818
            $self->{default_in_filter} = $self->filters->{$fname};
819
        }
820
        
821
        return $self;
822
    }
823
    
many changed
Yuki Kimoto authored on 2011-01-23
824
    return $self->{default_in_filter};
cleanup
Yuki Kimoto authored on 2011-01-12
825
}
826

            
cleanup
Yuki Kimoto authored on 2011-01-25
827
# DEPRECATED!
renamed DBIx::Custom::TagPro...
Yuki Kimoto authored on 2011-01-24
828
sub register_tag_processor {
829
    return shift->query_builder->register_tag_processor(@_);
830
}
831

            
fixed DBIx::Custom::QueryBui...
yuki-kimoto authored on 2010-08-15
832
1;
833

            
removed reconnect method
yuki-kimoto authored on 2010-05-28
834
=head1 NAME
835

            
renamed build_query to creat...
yuki-kimoto authored on 2010-08-06
836
DBIx::Custom - DBI interface, having hash parameter binding and filtering system
removed reconnect method
yuki-kimoto authored on 2010-05-28
837

            
838
=head1 SYNOPSYS
cleanup
yuki-kimoto authored on 2010-08-05
839

            
renamed build_query to creat...
yuki-kimoto authored on 2010-08-06
840
    use DBIx::Custom;
renamed update tag to update...
yuki-kimoto authored on 2010-08-09
841
    my $dbi = DBIx::Custom->connect(data_source => "dbi:mysql:database=dbname",
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
842
                                    user => 'ken', password => '!LFKD%$&',
843
                                    dbi_option => {mysql_enable_utf8 => 1});
cleanup
yuki-kimoto authored on 2010-08-05
844

            
removed reconnect method
yuki-kimoto authored on 2010-05-28
845
    # Insert 
added insert, update, update...
Yuki Kimoto authored on 2011-01-04
846
    $dbi->insert(table  => 'book',
renamed update tag to update...
yuki-kimoto authored on 2010-08-09
847
                 param  => {title => 'Perl', author => 'Ken'},
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
848
                 filter => {title => 'to_something'});
removed reconnect method
yuki-kimoto authored on 2010-05-28
849
    
850
    # Update 
added insert, update, update...
Yuki Kimoto authored on 2011-01-04
851
    $dbi->update(table  => 'book', 
renamed update tag to update...
yuki-kimoto authored on 2010-08-09
852
                 param  => {title => 'Perl', author => 'Ken'}, 
removed reconnect method
yuki-kimoto authored on 2010-05-28
853
                 where  => {id => 5},
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
854
                 filter => {title => 'to_something'});
removed reconnect method
yuki-kimoto authored on 2010-05-28
855
    
856
    # Update all
added insert, update, update...
Yuki Kimoto authored on 2011-01-04
857
    $dbi->update_all(table  => 'book',
renamed update tag to update...
yuki-kimoto authored on 2010-08-09
858
                     param  => {title => 'Perl'},
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
859
                     filter => {title => 'to_something'});
removed reconnect method
yuki-kimoto authored on 2010-05-28
860
    
861
    # Delete
added insert, update, update...
Yuki Kimoto authored on 2011-01-04
862
    $dbi->delete(table  => 'book',
removed reconnect method
yuki-kimoto authored on 2010-05-28
863
                 where  => {author => 'Ken'},
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
864
                 filter => {title => 'to_something'});
removed reconnect method
yuki-kimoto authored on 2010-05-28
865
    
866
    # Delete all
added insert, update, update...
Yuki Kimoto authored on 2011-01-04
867
    $dbi->delete_all(table => 'book');
cleanup
yuki-kimoto authored on 2010-08-05
868

            
removed reconnect method
yuki-kimoto authored on 2010-05-28
869
    # Select
renamed fetch_rows to fetch_...
yuki-kimoto authored on 2010-05-01
870
    my $result = $dbi->select(
added insert, update, update...
Yuki Kimoto authored on 2011-01-04
871
        table  => 'book',
update document
yuki-kimoto authored on 2010-05-27
872
        column => [qw/author title/],
873
        where  => {author => 'Ken'},
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
874
        relation => {'book.id' => 'rental.book_id'},
updated document
yuki-kimoto authored on 2010-08-08
875
        append => 'order by id limit 5',
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
876
        filter => {title => 'to_something'}
added commit method
yuki-kimoto authored on 2010-05-27
877
    );
cleanup
yuki-kimoto authored on 2010-08-05
878

            
renamed build_query to creat...
yuki-kimoto authored on 2010-08-06
879
    # Execute SQL
added insert, update, update...
Yuki Kimoto authored on 2011-01-04
880
    $dbi->execute("select title from book");
removed register_format()
yuki-kimoto authored on 2010-05-26
881
    
renamed build_query to creat...
yuki-kimoto authored on 2010-08-06
882
    # Execute SQL with hash binding and filtering
added insert, update, update...
Yuki Kimoto authored on 2011-01-04
883
    $dbi->execute("select id from book where {= author} and {like title}",
removed register_format()
yuki-kimoto authored on 2010-05-26
884
                  param  => {author => 'ken', title => '%Perl%'},
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
885
                  filter => {title => 'to_something'});
removed reconnect method
yuki-kimoto authored on 2010-05-28
886

            
887
    # Create query and execute it
renamed build_query to creat...
yuki-kimoto authored on 2010-08-06
888
    my $query = $dbi->create_query(
added insert, update, update...
Yuki Kimoto authored on 2011-01-04
889
        "select id from book where {= author} and {like title}"
removed reconnect method
yuki-kimoto authored on 2010-05-28
890
    );
updated document
yuki-kimoto authored on 2010-08-08
891
    $dbi->execute($query, param => {author => 'Ken', title => '%Perl%'})
cleanup
yuki-kimoto authored on 2010-08-05
892

            
893
    # Get DBI object
894
    my $dbh = $dbi->dbh;
895

            
removed register_format()
yuki-kimoto authored on 2010-05-26
896
    # Fetch
897
    while (my $row = $result->fetch) {
898
        # ...
899
    }
900
    
901
    # Fetch hash
902
    while (my $row = $result->fetch_hash) {
903
        
904
    }
905
    
renamed update tag to update...
yuki-kimoto authored on 2010-08-09
906
=head1 DESCRIPTIONS
removed reconnect method
yuki-kimoto authored on 2010-05-28
907

            
renamed build_query to creat...
yuki-kimoto authored on 2010-08-06
908
L<DBIx::Custom> is one of L<DBI> interface modules,
909
such as L<DBIx::Class>, L<DBIx::Simple>.
removed reconnect method
yuki-kimoto authored on 2010-05-28
910

            
renamed build_query to creat...
yuki-kimoto authored on 2010-08-06
911
This module is not O/R mapper. O/R mapper is useful,
912
but you must learn many syntax of the O/R mapper,
updated document
yuki-kimoto authored on 2010-08-08
913
which is almost another language.
914
Created SQL statement is offten not effcient and damage SQL performance.
renamed build_query to creat...
yuki-kimoto authored on 2010-08-06
915
so you have to execute raw SQL in the end.
removed reconnect method
yuki-kimoto authored on 2010-05-28
916

            
renamed build_query to creat...
yuki-kimoto authored on 2010-08-06
917
L<DBIx::Custom> is middle area between L<DBI> and O/R mapper.
updated document
yuki-kimoto authored on 2010-08-08
918
L<DBIx::Custom> provide flexible hash parameter binding and filtering system,
added experimental expand me...
yuki-kimoto authored on 2010-10-20
919
and suger methods, such as C<insert()>, C<update()>, C<delete()>, C<select()>
updated document
yuki-kimoto authored on 2010-08-08
920
to execute SQL easily.
removed reconnect method
yuki-kimoto authored on 2010-05-28
921

            
updated document
yuki-kimoto authored on 2010-08-08
922
L<DBIx::Custom> respects SQL. SQL is very complex and not beautiful,
923
but de-facto standard,
924
so all people learing database know it.
renamed update tag to update...
yuki-kimoto authored on 2010-08-09
925
If you already know SQL,
926
you learn a little thing to use L<DBIx::Custom>.
removed reconnect method
yuki-kimoto authored on 2010-05-28
927

            
pod fix
Yuki Kimoto authored on 2011-01-21
928
See L<DBIx::Custom::Guide> for more details.
929

            
930
=head1 GUIDE
931

            
932
L<DBIx::Custom::Guide> - L<DBIx::Custom> complete guide
933

            
934
=head1 EXAMPLES
935

            
936
L<DBIx::Custom Wiki|https://github.com/yuki-kimoto/DBIx-Custom/wiki> - Many useful examples
updated document
yuki-kimoto authored on 2010-08-08
937

            
update document
yuki-kimoto authored on 2010-01-30
938
=head1 ATTRIBUTES
packaging one directory
yuki-kimoto authored on 2009-11-16
939

            
cleanup
yuki-kimoto authored on 2010-10-17
940
=head2 C<cache>
packaging one directory
yuki-kimoto authored on 2009-11-16
941

            
cleanup
yuki-kimoto authored on 2010-10-17
942
    my $cache = $dbi->cache;
943
    $dbi      = $dbi->cache(1);
removed DESTROY method(not b...
yuki-kimoto authored on 2010-07-18
944

            
cleanup
yuki-kimoto authored on 2010-10-17
945
Enable parsed L<DBIx::Custom::Query> object caching.
946
Default to 1.
packaging one directory
yuki-kimoto authored on 2009-11-16
947

            
removed DBIx::Custom commit ...
yuki-kimoto authored on 2010-07-14
948
=head2 C<data_source>
packaging one directory
yuki-kimoto authored on 2009-11-16
949

            
cleanup
yuki-kimoto authored on 2010-08-03
950
    my $data_source = $dbi->data_source;
cleanup
yuki-kimoto authored on 2010-08-05
951
    $dbi            = $dbi->data_source("DBI:mysql:database=dbname");
removed DESTROY method(not b...
yuki-kimoto authored on 2010-07-18
952

            
cleanup
yuki-kimoto authored on 2010-08-05
953
Data source.
954
C<connect()> method use this value to connect the database.
removed DESTROY method(not b...
yuki-kimoto authored on 2010-07-18
955

            
removed DBIx::Custom commit ...
yuki-kimoto authored on 2010-07-14
956
=head2 C<dbh>
packaging one directory
yuki-kimoto authored on 2009-11-16
957

            
cleanup
yuki-kimoto authored on 2010-08-03
958
    my $dbh = $dbi->dbh;
959
    $dbi    = $dbi->dbh($dbh);
packaging one directory
yuki-kimoto authored on 2009-11-16
960

            
cleanup
yuki-kimoto authored on 2010-08-05
961
L<DBI> object. You can call all methods of L<DBI>.
packaging one directory
yuki-kimoto authored on 2009-11-16
962

            
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
963
=head2 C<dbi_option>
added dbi_options attribute
kimoto authored on 2010-12-20
964

            
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
965
    my $dbi_option = $dbi->dbi_option;
966
    $dbi            = $dbi->dbi_option($dbi_option);
added dbi_options attribute
kimoto authored on 2010-12-20
967

            
968
DBI options.
969
C<connect()> method use this value to connect the database.
970

            
cleanup
yuki-kimoto authored on 2010-08-05
971
Default filter when row is fetched.
packaging one directory
yuki-kimoto authored on 2009-11-16
972

            
cleanup
yuki-kimoto authored on 2010-10-17
973
=head2 C<filters>
bind_filter argument is chan...
yuki-kimoto authored on 2009-11-19
974

            
cleanup
yuki-kimoto authored on 2010-10-17
975
    my $filters = $dbi->filters;
976
    $dbi        = $dbi->filters(\%filters);
packaging one directory
yuki-kimoto authored on 2009-11-16
977

            
cleanup
yuki-kimoto authored on 2010-10-17
978
=head2 C<password>
979

            
980
    my $password = $dbi->password;
981
    $dbi         = $dbi->password('lkj&le`@s');
982

            
983
Password.
984
C<connect()> method use this value to connect the database.
update document
yuki-kimoto authored on 2010-01-30
985

            
renamed update tag to update...
yuki-kimoto authored on 2010-08-09
986
=head2 C<query_builder>
added commit method
yuki-kimoto authored on 2010-05-27
987

            
renamed update tag to update...
yuki-kimoto authored on 2010-08-09
988
    my $sql_class = $dbi->query_builder;
989
    $dbi          = $dbi->query_builder(DBIx::Custom::QueryBuilder->new);
added commit method
yuki-kimoto authored on 2010-05-27
990

            
renamed update tag to update...
yuki-kimoto authored on 2010-08-09
991
SQL builder. C<query_builder()> must be 
renamed build_query to creat...
yuki-kimoto authored on 2010-08-06
992
the instance of L<DBIx::Custom::QueryBuilder> subclass.
993
Default to L<DBIx::Custom::QueryBuilder> object.
cleanup
yuki-kimoto authored on 2010-08-05
994

            
cleanup
yuki-kimoto authored on 2010-10-17
995
=head2 C<result_class>
cleanup
yuki-kimoto authored on 2010-08-05
996

            
cleanup
yuki-kimoto authored on 2010-10-17
997
    my $result_class = $dbi->result_class;
998
    $dbi             = $dbi->result_class('DBIx::Custom::Result');
cleanup
yuki-kimoto authored on 2010-08-05
999

            
cleanup
yuki-kimoto authored on 2010-10-17
1000
Result class for select statement.
1001
Default to L<DBIx::Custom::Result>.
cleanup
yuki-kimoto authored on 2010-08-05
1002

            
cleanup
yuki-kimoto authored on 2010-10-17
1003
=head2 C<user>
cleanup
yuki-kimoto authored on 2010-08-05
1004

            
cleanup
yuki-kimoto authored on 2010-10-17
1005
    my $user = $dbi->user;
1006
    $dbi     = $dbi->user('Ken');
cleanup
yuki-kimoto authored on 2010-08-05
1007

            
cleanup
yuki-kimoto authored on 2010-10-17
1008
User name.
1009
C<connect()> method use this value to connect the database.
1010
    
1011
=head1 METHODS
added commit method
yuki-kimoto authored on 2010-05-27
1012

            
cleanup
yuki-kimoto authored on 2010-10-17
1013
L<DBIx::Custom> inherits all methods from L<Object::Simple>
autoload DBI method
Yuki Kimoto authored on 2011-01-26
1014
and use all method of L<DBI>
cleanup
yuki-kimoto authored on 2010-10-17
1015
and implements the following new ones.
added check_filter attribute
yuki-kimoto authored on 2010-08-08
1016

            
cleanup
Yuki Kimoto authored on 2011-01-25
1017
=head2 C<(experimental) apply_filter>
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
1018

            
renamed auto_filter to apply...
Yuki Kimoto authored on 2011-01-12
1019
    $dbi->apply_filter(
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
1020
        $table,
renamed auto_filter to apply...
Yuki Kimoto authored on 2011-01-12
1021
        $column1 => {in => $infilter1, out => $outfilter1}
1022
        $column2 => {in => $infilter2, out => $outfilter2}
1023
        ...,
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
1024
    );
1025

            
renamed auto_filter to apply...
Yuki Kimoto authored on 2011-01-12
1026
C<apply_filter> is automatically filter for columns of table.
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
1027
This have effect C<insert>, C<update>, C<delete>. C<select>
cleanup
Yuki Kimoto authored on 2010-12-21
1028
and L<DBIx::Custom::Result> object. but this has'nt C<execute> method.
1029

            
cleanup
Yuki Kimoto authored on 2011-01-12
1030
If you want to have effect C<execute()> method, use C<table>
cleanup
Yuki Kimoto authored on 2010-12-21
1031
arguments.
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
1032

            
cleanup
Yuki Kimoto authored on 2010-12-21
1033
    $result = $dbi->execute(
1034
        "select * from table1 where {= key1} and {= key2};",
1035
         param => {key1 => 1, key2 => 2},
renamed auto_filter to apply...
Yuki Kimoto authored on 2011-01-12
1036
         table => ['table1']
cleanup
Yuki Kimoto authored on 2010-12-21
1037
    );
1038
    
removed DBIx::Custom commit ...
yuki-kimoto authored on 2010-07-14
1039
=head2 C<connect>
packaging one directory
yuki-kimoto authored on 2009-11-16
1040

            
cleanup
yuki-kimoto authored on 2010-08-05
1041
    my $dbi = DBIx::Custom->connect(data_source => "dbi:mysql:database=dbname",
update document
yuki-kimoto authored on 2010-05-27
1042
                                    user => 'ken', password => '!LFKD%$&');
bind_filter argument is chan...
yuki-kimoto authored on 2009-11-19
1043

            
cleanup
yuki-kimoto authored on 2010-08-05
1044
Create a new L<DBIx::Custom> object and connect to the database.
renamed build_query to creat...
yuki-kimoto authored on 2010-08-06
1045
L<DBIx::Custom> is a wrapper of L<DBI>.
cleanup
yuki-kimoto authored on 2010-08-09
1046
C<AutoCommit> and C<RaiseError> options are true, 
renamed build_query to creat...
yuki-kimoto authored on 2010-08-06
1047
and C<PrintError> option is false by default. 
packaging one directory
yuki-kimoto authored on 2009-11-16
1048

            
cleanup
yuki-kimoto authored on 2010-10-17
1049
=head2 C<create_query>
1050
    
1051
    my $query = $dbi->create_query(
added insert, update, update...
Yuki Kimoto authored on 2011-01-04
1052
        "select * from book where {= author} and {like title};"
cleanup
yuki-kimoto authored on 2010-10-17
1053
    );
update document
yuki-kimoto authored on 2009-11-19
1054

            
cleanup
yuki-kimoto authored on 2010-10-17
1055
Create the instance of L<DBIx::Custom::Query> from the source of SQL.
1056
If you want to get high performance,
1057
use C<create_query()> method and execute it by C<execute()> method
1058
instead of suger methods.
bind_filter argument is chan...
yuki-kimoto authored on 2009-11-19
1059

            
cleanup
yuki-kimoto authored on 2010-10-17
1060
    $dbi->execute($query, {author => 'Ken', title => '%Perl%'});
version 0.0901
yuki-kimoto authored on 2009-12-17
1061

            
cleanup
yuki-kimoto authored on 2010-10-17
1062
=head2 C<execute>
packaging one directory
yuki-kimoto authored on 2009-11-16
1063

            
cleanup
yuki-kimoto authored on 2010-10-17
1064
    my $result = $dbi->execute($query,  param => $params, filter => \%filter);
1065
    my $result = $dbi->execute($source, param => $params, filter => \%filter);
update document
yuki-kimoto authored on 2009-11-19
1066

            
cleanup
yuki-kimoto authored on 2010-10-17
1067
Execute query or the source of SQL.
1068
Query is L<DBIx::Custom::Query> object.
1069
Return value is L<DBIx::Custom::Result> if select statement is executed,
1070
or the count of affected rows if insert, update, delete statement is executed.
version 0.0901
yuki-kimoto authored on 2009-12-17
1071

            
removed DBIx::Custom commit ...
yuki-kimoto authored on 2010-07-14
1072
=head2 C<delete>
packaging one directory
yuki-kimoto authored on 2009-11-16
1073

            
cleanup
yuki-kimoto authored on 2010-08-05
1074
    $dbi->delete(table  => $table,
1075
                 where  => \%where,
1076
                 append => $append,
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
1077
                 filter => \%filter,
1078
                 query  => 1);
bind_filter argument is chan...
yuki-kimoto authored on 2009-11-19
1079

            
renamed build_query to creat...
yuki-kimoto authored on 2010-08-06
1080
Execute delete statement.
1081
C<delete> method have C<table>, C<where>, C<append>, and C<filter> arguments.
1082
C<table> is a table name.
1083
C<where> is where clause. this must be hash reference.
1084
C<append> is a string added at the end of the SQL statement.
1085
C<filter> is filters when parameter binding is executed.
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
1086
C<query> is if you don't execute sql and get L<DBIx::Custom::Query> object as return value.
1087
default to 0. This is experimental.
cleanup
yuki-kimoto authored on 2010-08-09
1088
Return value of C<delete()> is the count of affected rows.
renamed build_query to creat...
yuki-kimoto authored on 2010-08-06
1089

            
removed DBIx::Custom commit ...
yuki-kimoto authored on 2010-07-14
1090
=head2 C<delete_all>
packaging one directory
yuki-kimoto authored on 2009-11-16
1091

            
cleanup
yuki-kimoto authored on 2010-08-05
1092
    $dbi->delete_all(table => $table);
packaging one directory
yuki-kimoto authored on 2009-11-16
1093

            
renamed build_query to creat...
yuki-kimoto authored on 2010-08-06
1094
Execute delete statement to delete all rows.
1095
Arguments is same as C<delete> method,
1096
except that C<delete_all> don't have C<where> argument.
cleanup
yuki-kimoto authored on 2010-08-09
1097
Return value of C<delete_all()> is the count of affected rows.
bind_filter argument is chan...
yuki-kimoto authored on 2009-11-19
1098

            
cleanup
yuki-kimoto authored on 2010-10-17
1099
=head2 C<insert>
1100

            
1101
    $dbi->insert(table  => $table, 
1102
                 param  => \%param,
1103
                 append => $append,
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
1104
                 filter => \%filter,
1105
                 query  => 1);
cleanup
yuki-kimoto authored on 2010-10-17
1106

            
1107
Execute insert statement.
1108
C<insert> method have C<table>, C<param>, C<append>
1109
and C<filter> arguments.
1110
C<table> is a table name.
1111
C<param> is the pairs of column name value. this must be hash reference.
1112
C<append> is a string added at the end of the SQL statement.
1113
C<filter> is filters when parameter binding is executed.
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
1114
C<query> is if you don't execute sql and get L<DBIx::Custom::Query> object as return value.
1115
default to 0. This is experimental.
cleanup
yuki-kimoto authored on 2010-10-17
1116
This is overwrites C<default_bind_filter>.
1117
Return value of C<insert()> is the count of affected rows.
1118

            
pod fix
Yuki Kimoto authored on 2011-01-21
1119
=head2 C<(experimental) each_column>
added experimental iterate_a...
Yuki Kimoto authored on 2010-12-22
1120

            
pod fix
Yuki Kimoto authored on 2011-01-21
1121
    $dbi->each_column(
added experimental iterate_a...
Yuki Kimoto authored on 2010-12-22
1122
        sub {
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
1123
            my ($self, $table, $column, $info) = @_;
added experimental iterate_a...
Yuki Kimoto authored on 2010-12-22
1124
            
pod fix
Yuki Kimoto authored on 2011-01-21
1125
            my $type = $info->{TYPE_NAME};
1126
            
1127
            if ($type eq 'DATE') {
1128
                # ...
1129
            }
added experimental iterate_a...
Yuki Kimoto authored on 2010-12-22
1130
        }
1131
    );
pod fix
Yuki Kimoto authored on 2011-01-21
1132
Get column informations from database.
1133
Argument is callback.
1134
You can do anything in callback.
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
1135
Callback receive four arguments, dbi object, table name,
1136
column name and columninformation.
1137

            
1138
=head2 C<(experimental) method>
1139

            
1140
    $dbi->method(
1141
        update_or_insert => sub {
1142
            my $self = shift;
1143
            # do something
1144
        },
1145
        find_or_create   => sub {
1146
            my $self = shift;
1147
            # do something
1148
        }
1149
    );
1150

            
1151
Register method. These method is called from L<DBIx::Custom> object directory.
1152

            
1153
    $dbi->update_or_insert;
1154
    $dbi->find_or_create;
1155

            
1156
=head2 C<new>
1157

            
1158
    my $dbi = DBIx::Custom->connect(data_source => "dbi:mysql:database=dbname",
1159
                                    user => 'ken', password => '!LFKD%$&');
1160

            
1161
Create a new L<DBIx::Custom> object.
1162

            
1163
=head2 C<(experimental) not_exists>
1164

            
1165
    my $not_exists = $dbi->not_exists;
1166

            
1167
Get DBIx::Custom::NotExists object.
experimental extended select...
Yuki Kimoto authored on 2011-01-17
1168

            
cleanup
yuki-kimoto authored on 2010-10-17
1169
=head2 C<register_filter>
1170

            
1171
    $dbi->register_filter(%filters);
1172
    $dbi->register_filter(\%filters);
1173
    
1174
Register filter. Registered filters is available in the following attributes
1175
or arguments.
1176

            
1177
=over 4
1178

            
1179
=item *
1180

            
1181
C<filter> argument of C<insert()>, C<update()>,
1182
C<update_all()>, C<delete()>, C<delete_all()>, C<select()>
1183
methods
1184

            
1185
=item *
1186

            
1187
C<execute()> method
1188

            
1189
=item *
1190

            
1191
C<default_filter> and C<filter> of C<DBIx::Custom::Query>
1192

            
1193
=item *
1194

            
1195
C<default_filter> and C<filter> of C<DBIx::Custom::Result>
1196

            
1197
=back
1198

            
renamed DBIx::Custom::TagPro...
Yuki Kimoto authored on 2011-01-24
1199
=head2 C<register_tag>
added register_tag_processor
Yuki Kimoto authored on 2011-01-20
1200

            
renamed DBIx::Custom::TagPro...
Yuki Kimoto authored on 2011-01-24
1201
    $dbi->register_tag(
added register_tag_processor
Yuki Kimoto authored on 2011-01-20
1202
        limit => sub {
1203
            ...;
1204
        }
1205
    );
1206

            
cleanup
Yuki Kimoto authored on 2011-01-25
1207
Register tag.
added register_tag_processor
Yuki Kimoto authored on 2011-01-20
1208

            
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
1209
=head2 C<rollback>
cleanup
yuki-kimoto authored on 2010-10-17
1210

            
1211
    $dbi->rollback;
1212

            
1213
Rollback transaction.
1214
This is same as L<DBI>'s C<rollback>.
1215

            
removed DBIx::Custom commit ...
yuki-kimoto authored on 2010-07-14
1216
=head2 C<select>
packaging one directory
yuki-kimoto authored on 2009-11-16
1217
    
cleanup
yuki-kimoto authored on 2010-08-05
1218
    my $result = $dbi->select(table    => $table,
1219
                              column   => [@column],
1220
                              where    => \%where,
1221
                              append   => $append,
1222
                              relation => \%relation,
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
1223
                              filter   => \%filter,
1224
                              query    => 1);
update document
yuki-kimoto authored on 2009-11-19
1225

            
renamed build_query to creat...
yuki-kimoto authored on 2010-08-06
1226
Execute select statement.
cleanup
yuki-kimoto authored on 2010-08-09
1227
C<select> method have C<table>, C<column>, C<where>, C<append>,
renamed build_query to creat...
yuki-kimoto authored on 2010-08-06
1228
C<relation> and C<filter> arguments.
1229
C<table> is a table name.
cleanup
yuki-kimoto authored on 2010-08-09
1230
C<where> is where clause. this is normally hash reference.
renamed build_query to creat...
yuki-kimoto authored on 2010-08-06
1231
C<append> is a string added at the end of the SQL statement.
1232
C<filter> is filters when parameter binding is executed.
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
1233
C<query> is if you don't execute sql and get L<DBIx::Custom::Query> object as return value.
1234
default to 0. This is experimental.
update document
yuki-kimoto authored on 2009-11-19
1235

            
cleanup
yuki-kimoto authored on 2010-08-09
1236
First element is a string. it contains tags,
1237
such as "{= title} or {like author}".
1238
Second element is paramters.
1239

            
cleanup
yuki-kimoto authored on 2010-10-17
1240
=head2 C<update>
removed reconnect method
yuki-kimoto authored on 2010-05-28
1241

            
cleanup
yuki-kimoto authored on 2010-10-17
1242
    $dbi->update(table  => $table, 
1243
                 param  => \%params,
1244
                 where  => \%where,
1245
                 append => $append,
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
1246
                 filter => \%filter,
1247
                 query  => 1)
removed reconnect method
yuki-kimoto authored on 2010-05-28
1248

            
cleanup
yuki-kimoto authored on 2010-10-17
1249
Execute update statement.
1250
C<update> method have C<table>, C<param>, C<where>, C<append>
1251
and C<filter> arguments.
1252
C<table> is a table name.
1253
C<param> is column-value pairs. this must be hash reference.
1254
C<where> is where clause. this must be hash reference.
1255
C<append> is a string added at the end of the SQL statement.
1256
C<filter> is filters when parameter binding is executed.
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
1257
C<query> is if you don't execute sql and get L<DBIx::Custom::Query> object as return value.
1258
default to 0. This is experimental.
cleanup
yuki-kimoto authored on 2010-10-17
1259
This is overwrites C<default_bind_filter>.
1260
Return value of C<update()> is the count of affected rows.
removed reconnect method
yuki-kimoto authored on 2010-05-28
1261

            
cleanup
Yuki Kimoto authored on 2011-01-12
1262
=head2 C<(experimental) table>
remove DBIx::Custom::Model
Yuki Kimoto authored on 2011-01-12
1263

            
renamed experimental DBIx::C...
Yuki Kimoto authored on 2011-01-25
1264
    $dbi->table('book')->method(
remove DBIx::Custom::Model
Yuki Kimoto authored on 2011-01-12
1265
        insert => sub { ... },
1266
        update => sub { ... }
1267
    );
1268
    
1269
    my $table = $dbi->table('book');
1270

            
1271
Create a L<DBIx::Custom::Table> object,
1272
or get a L<DBIx::Custom::Table> object.
1273

            
cleanup
yuki-kimoto authored on 2010-10-17
1274
=head2 C<update_all>
renamed build_query to creat...
yuki-kimoto authored on 2010-08-06
1275

            
cleanup
yuki-kimoto authored on 2010-10-17
1276
    $dbi->update_all(table  => $table, 
1277
                     param  => \%params,
1278
                     filter => \%filter,
1279
                     append => $append);
renamed build_query to creat...
yuki-kimoto authored on 2010-08-06
1280

            
cleanup
yuki-kimoto authored on 2010-10-17
1281
Execute update statement to update all rows.
1282
Arguments is same as C<update> method,
1283
except that C<update_all> don't have C<where> argument.
1284
Return value of C<update_all()> is the count of affected rows.
removed DBIx::Custom commit ...
yuki-kimoto authored on 2010-07-14
1285

            
fix tests
Yuki Kimoto authored on 2011-01-18
1286
=head2 C<(experimental) where>
1287

            
1288
    my $where = $dbi->where;
1289

            
1290
Create a new L<DBIx::Custom::Where> object.
1291

            
cleanup
Yuki Kimoto authored on 2011-01-25
1292
=head2 C<cache_method>
cleanup
Yuki Kimoto authored on 2011-01-12
1293

            
1294
    $dbi          = $dbi->cache_method(\&cache_method);
1295
    $cache_method = $dbi->cache_method
1296

            
1297
Method to set and get caches.
1298

            
cleanup
Yuki Kimoto authored on 2011-01-25
1299
=head1 Tags
1300

            
1301
The following tags is available.
1302

            
1303
=head2 C<?>
1304

            
1305
Placeholder tag.
1306

            
1307
    {? NAME}    ->   ?
1308

            
1309
=head2 C<=>
1310

            
1311
Equal tag.
1312

            
1313
    {= NAME}    ->   NAME = ?
1314

            
1315
=head2 C<E<lt>E<gt>>
1316

            
1317
Not equal tag.
1318

            
1319
    {<> NAME}   ->   NAME <> ?
1320

            
1321
=head2 C<E<lt>>
1322

            
1323
Lower than tag
1324

            
1325
    {< NAME}    ->   NAME < ?
1326

            
1327
=head2 C<E<gt>>
1328

            
1329
Greater than tag
1330

            
1331
    {> NAME}    ->   NAME > ?
1332

            
1333
=head2 C<E<gt>=>
1334

            
1335
Greater than or equal tag
1336

            
1337
    {>= NAME}   ->   NAME >= ?
1338

            
1339
=head2 C<E<lt>=>
1340

            
1341
Lower than or equal tag
1342

            
1343
    {<= NAME}   ->   NAME <= ?
1344

            
1345
=head2 C<like>
1346

            
1347
Like tag
1348

            
1349
    {like NAME}   ->   NAME like ?
1350

            
1351
=head2 C<in>
1352

            
1353
In tag.
1354

            
1355
    {in NAME COUNT}   ->   NAME in [?, ?, ..]
1356

            
1357
=head2 C<insert_param>
1358

            
1359
Insert parameter tag.
1360

            
1361
    {insert_param NAME1 NAME2}   ->   (NAME1, NAME2) values (?, ?)
1362

            
1363
=head2 C<update_param>
1364

            
1365
Updata parameter tag.
1366

            
1367
    {update_param NAME1 NAME2}   ->   set NAME1 = ?, NAME2 = ?
1368

            
DBIx::Custom is now stable
yuki-kimoto authored on 2010-09-07
1369
=head1 STABILITY
1370

            
cleanup
Yuki Kimoto authored on 2011-01-25
1371
L<DBIx::Custom> is stable. APIs keep backword compatible
1372
except experimental one in the feature.
DBIx::Custom is now stable
yuki-kimoto authored on 2010-09-07
1373

            
removed DESTROY method(not b...
yuki-kimoto authored on 2010-07-18
1374
=head1 BUGS
1375

            
renamed build_query to creat...
yuki-kimoto authored on 2010-08-06
1376
Please tell me bugs if found.
removed DESTROY method(not b...
yuki-kimoto authored on 2010-07-18
1377

            
1378
C<< <kimoto.yuki at gmail.com> >>
1379

            
1380
L<http://github.com/yuki-kimoto/DBIx-Custom>
1381

            
removed reconnect method
yuki-kimoto authored on 2010-05-28
1382
=head1 AUTHOR
1383

            
1384
Yuki Kimoto, C<< <kimoto.yuki at gmail.com> >>
version 0.0901
yuki-kimoto authored on 2009-12-17
1385

            
packaging one directory
yuki-kimoto authored on 2009-11-16
1386
=head1 COPYRIGHT & LICENSE
1387

            
cleanup
Yuki Kimoto authored on 2011-01-25
1388
Copyright 2009-2011 Yuki Kimoto, all rights reserved.
packaging one directory
yuki-kimoto authored on 2009-11-16
1389

            
1390
This program is free software; you can redistribute it and/or modify it
1391
under the same terms as Perl itself.
1392

            
1393
=cut
added cache_method attribute
yuki-kimoto authored on 2010-06-25
1394

            
1395