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

            
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
3
our $VERSION = '0.1649';
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;
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
17
use DBIx::Custom::Model;
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,
add default_dbi_option()
Yuki Kimoto authored on 2011-02-19
24
    dbi_option => sub { {} },
25
    default_dbi_option => sub {{
26
        RaiseError => 1,
27
        PrintError => 0,
28
        AutoCommit => 1
29
    }},
add models() attribute
Yuki Kimoto authored on 2011-02-21
30
    models => sub { {} },
cleanup
Yuki Kimoto authored on 2011-01-23
31
    query_builder => sub { DBIx::Custom::QueryBuilder->new },
many changed
Yuki Kimoto authored on 2011-01-23
32
    result_class  => 'DBIx::Custom::Result',
update pod
Yuki Kimoto authored on 2011-02-07
33
    safety_column_name => sub { qr/^[\w\.]*$/ },
34
    stash => sub { {} }
many changed
Yuki Kimoto authored on 2011-01-23
35
);
36

            
37
__PACKAGE__->attr(
38
    cache_method => sub {
39
        sub {
40
            my $self = shift;
41
            
42
            $self->{_cached} ||= {};
43
            
44
            if (@_ > 1) {
45
                $self->{_cached}{$_[0]} = $_[1] 
46
            }
47
            else {
48
                return $self->{_cached}{$_[0]}
49
            }
50
        }
51
    }
52
);
53

            
54
__PACKAGE__->attr(
fix tests
Yuki Kimoto authored on 2011-01-13
55
    filters => sub {
56
        {
57
            encode_utf8 => sub { encode_utf8($_[0]) },
58
            decode_utf8 => sub { decode_utf8($_[0]) }
59
        }
many changed
Yuki Kimoto authored on 2011-01-23
60
    }
fix tests
Yuki Kimoto authored on 2011-01-13
61
);
cleanup
yuki-kimoto authored on 2010-10-17
62

            
added helper method
yuki-kimoto authored on 2010-10-17
63
our $AUTOLOAD;
64
sub AUTOLOAD {
65
    my $self = shift;
66

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

            
renamed helper to method.
Yuki Kimoto authored on 2011-01-25
70
    # Method
71
    $self->{_methods} ||= {};
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
72
    if (my $method = $self->{_methods}->{$mname}) {
73
        return $self->$method(@_)
74
    }
75
    elsif ($self->dbh->can($mname)) {
76
        $self->dbh->$mname(@_);
77
    }
78
    else {
79
        croak qq/Can't locate object method "$mname" via "$package"/
80
    }
added helper method
yuki-kimoto authored on 2010-10-17
81
}
82

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

            
86
    # Initialize filters
cleanup
Yuki Kimoto authored on 2011-01-12
87
    $self->{filter} ||= {};
many changed
Yuki Kimoto authored on 2011-01-23
88
    $self->{filter}{out} ||= {};
89
    $self->{filter}{in} ||= {};
cleanup
Yuki Kimoto authored on 2010-12-22
90
    
many changed
Yuki Kimoto authored on 2011-01-23
91
    # Create filters
92
    my $usage = "Usage: \$dbi->apply_filter(" .
fix bug : filter can't over...
Yuki Kimoto authored on 2011-02-09
93
                "TABLE, COLUMN1, {in => INFILTER1, out => OUTFILTER1, end => ENDFILTER1}, " .
94
                "COLUMN2, {in => INFILTER2, out => OUTFILTER2, end => ENDFILTER2}, ...)";
many changed
Yuki Kimoto authored on 2011-01-23
95

            
96
    for (my $i = 0; $i < @cinfos; $i += 2) {
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
97
        
many changed
Yuki Kimoto authored on 2011-01-23
98
        # Column
99
        my $column = $cinfos[$i];
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
100
        
fix bug : filter can't over...
Yuki Kimoto authored on 2011-02-09
101
        # Filter info
102
        my $finfo = $cinfos[$i + 1] || {};
103
        croak $usage unless  ref $finfo eq 'HASH';
104
        foreach my $ftype (keys %$finfo) {
105
            croak $usage unless $ftype eq 'in' || $ftype eq 'out'
106
                             || $ftype eq 'end'; 
many changed
Yuki Kimoto authored on 2011-01-23
107
        }
108
        
fix bug : filter can't over...
Yuki Kimoto authored on 2011-02-09
109
        foreach my $way (qw/in out end/) {
110
            my $filter = $finfo->{$way};
cleanup
Yuki Kimoto authored on 2010-12-22
111
            
fix bug : filter can't over...
Yuki Kimoto authored on 2011-02-09
112
            # State
113
            my $state = !exists $finfo->{$way} ? 'not_exists'
114
                      : !defined $filter        ? 'not_defined'
115
                      : ref $filter eq 'CODE'   ? 'code'
116
                      : 'name';
117
            
118
            next if $state eq 'not_exists';
119
            
120
            # Check filter
121
            croak qq{Filter "$filter" is not registered}
122
              if  $state eq 'name'
123
               && ! exists $self->filters->{$filter};
124
            
125
            # Filter
126
            my $f = $state eq 'not_defined' ? undef
127
                  : $state eq 'code'        ? $filter
128
                  : $self->filters->{$filter};
129
            $self->{filter}{$way}{$table}{$column} = $f;
130
            $self->{filter}{$way}{$table}{"$table.$column"} = $f;
131
            $self->{filter}{$way}{$table}{"${table}__$column"} = $f;
many changed
Yuki Kimoto authored on 2011-01-23
132
        }
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
133
    }
134
    
many changed
Yuki Kimoto authored on 2011-01-23
135
    return $self;
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
136
}
137

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

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

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

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

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

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

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

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

            
cleanup
Yuki Kimoto authored on 2011-01-27
271
    # SQL stack
272
    my @sql;
273

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

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

            
add experimental update_at()...
Yuki Kimoto authored on 2011-02-21
294
our %VALID_DELETE_AT_ARGS
295
  = map { $_ => 1 } qw/table where append filter query
296
                       primary_key param/;
297

            
298
sub delete_at {
299
    my ($self, %args) = @_;
300
    
301
    # Check arguments
302
    foreach my $name (keys %args) {
303
        croak qq{"$name" is invalid argument}
304
          unless $VALID_DELETE_AT_ARGS{$name};
305
    }
306
    
307
    # Primary key
308
    my $primary_keys = delete $args{primary_key};
309
    $primary_keys = [$primary_keys] unless ref $primary_keys;
310
    
311
    # Where clause
312
    my $where = {};
313
    if (exists $args{where}) {
314
        my $where_columns = delete $args{where};
315
        $where_columns = [$where_columns] unless ref $where_columns;
316
        
317
        for(my $i = 0; $i < @$primary_keys; $i ++) {
318
           $where->{$primary_keys->[$i]} = $where_columns->[$i];
319
        }
320
    }
321
    elsif (exists $args{param}) {
322
        my $param = delete $args{param};
323
        
324
        for(my $i = 0; $i < @$primary_keys; $i ++) {
325
           $where->{$primary_keys->[$i]}
326
             = delete $param->{$primary_keys->[$i]};
327
        }
328
    }
329
    
330
    return $self->delete(where => $where, %args);
331
}
332

            
added helper method
yuki-kimoto authored on 2010-10-17
333
sub DESTROY { }
334

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

            
cleanup
yuki-kimoto authored on 2010-10-17
337
sub execute{
338
    my ($self, $query, %args)  = @_;
refactoring delete and delet...
yuki-kimoto authored on 2010-04-28
339
    
340
    # Check arguments
select, insert, update, upda...
yuki-kimoto authored on 2010-06-14
341
    foreach my $name (keys %args) {
add tests
yuki-kimoto authored on 2010-08-10
342
        croak qq{"$name" is invalid argument}
cleanup
yuki-kimoto authored on 2010-10-17
343
          unless $VALID_EXECUTE_ARGS{$name};
refactoring delete and delet...
yuki-kimoto authored on 2010-04-28
344
    }
345
    
cleanup
yuki-kimoto authored on 2010-10-17
346
    my $params = $args{param} || {};
packaging one directory
yuki-kimoto authored on 2009-11-16
347
    
cleanup
yuki-kimoto authored on 2010-10-17
348
    # First argument is the soruce of SQL
349
    $query = $self->create_query($query)
350
      unless ref $query;
packaging one directory
yuki-kimoto authored on 2009-11-16
351
    
add table tag
Yuki Kimoto authored on 2011-02-09
352
    # Applied filter
cleanup
Yuki Kimoto authored on 2011-01-12
353
    my $filter = {};
add table tag
Yuki Kimoto authored on 2011-02-09
354
    my $tables = $query->tables;
355
    my $arg_tables = $args{table} || [];
356
    $arg_tables = [$arg_tables]
357
      unless ref $arg_tables eq 'ARRAY';
358
    push @$tables, @$arg_tables;
renamed auto_filter to apply...
Yuki Kimoto authored on 2011-01-12
359
    foreach my $table (@$tables) {
cleanup
Yuki Kimoto authored on 2011-01-12
360
        $filter = {
361
            %$filter,
362
            %{$self->{filter}{out}->{$table} || {}}
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
363
        }
364
    }
365
    
cleanup
Yuki Kimoto authored on 2011-01-12
366
    # Filter argument
367
    my $f = $args{filter} || $query->filter || {};
368
    foreach my $column (keys %$f) {
369
        my $fname = $f->{$column};
renamed auto_filter to apply...
Yuki Kimoto authored on 2011-01-12
370
        if (!defined $fname) {
cleanup
Yuki Kimoto authored on 2011-01-12
371
            $f->{$column} = undef;
renamed auto_filter to apply...
Yuki Kimoto authored on 2011-01-12
372
        }
373
        elsif (ref $fname ne 'CODE') {
many changed
Yuki Kimoto authored on 2011-01-23
374
          croak qq{Filter "$fname" is not registered"}
cleanup
Yuki Kimoto authored on 2010-12-21
375
            unless exists $self->filters->{$fname};
376
          
cleanup
Yuki Kimoto authored on 2011-01-12
377
          $f->{$column} = $self->filters->{$fname};
cleanup
Yuki Kimoto authored on 2010-12-21
378
        }
379
    }
cleanup
Yuki Kimoto authored on 2011-01-12
380
    $filter = {%$filter, %$f};
packaging one directory
yuki-kimoto authored on 2009-11-16
381
    
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
382
    # Bind
383
    my $bind = $self->_bind($params, $query->columns, $filter);
cleanup
yuki-kimoto authored on 2010-10-17
384
    
385
    # Execute
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
386
    my $sth = $query->sth;
cleanup
yuki-kimoto authored on 2010-10-17
387
    my $affected;
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
388
    eval {$affected = $sth->execute(@$bind)};
renamed DBIx::Custom::TagPro...
Yuki Kimoto authored on 2011-01-24
389
    $self->_croak($@, qq{. Following SQL is executed. "$query->{sql}"}) if $@;
cleanup
yuki-kimoto authored on 2010-10-17
390
    
391
    # Return resultset if select statement is executed
392
    if ($sth->{NUM_OF_FIELDS}) {
393
        
fix bug : filter can't over...
Yuki Kimoto authored on 2011-02-09
394
        # Result in and end filter
395
        my $in_filter  = {};
396
        my $end_filter = {};
cleanup
Yuki Kimoto authored on 2011-01-12
397
        foreach my $table (@$tables) {
398
            $in_filter = {
399
                %$in_filter,
400
                %{$self->{filter}{in}{$table} || {}}
fix bug : filter can't over...
Yuki Kimoto authored on 2011-02-09
401
            };
402
            $end_filter = {
403
                %$end_filter,
404
                %{$self->{filter}{end}{$table} || {}}
405
            };
cleanup
Yuki Kimoto authored on 2011-01-12
406
        }
407
        
408
        # Result
409
        my $result = $self->result_class->new(
cleanup
Yuki Kimoto authored on 2010-12-22
410
            sth            => $sth,
411
            filters        => $self->filters,
412
            filter_check   => $self->filter_check,
cleanup
Yuki Kimoto authored on 2011-01-12
413
            default_filter => $self->{default_in_filter},
fix bug : filter can't over...
Yuki Kimoto authored on 2011-02-09
414
            filter         => $in_filter || {},
415
            end_filter     => $end_filter || {}
cleanup
yuki-kimoto authored on 2010-10-17
416
        );
417

            
418
        return $result;
419
    }
420
    return $affected;
421
}
422

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

            
428
    # Check arguments
429
    foreach my $name (keys %args) {
430
        croak qq{"$name" is invalid argument}
431
          unless $VALID_INSERT_ARGS{$name};
packaging one directory
yuki-kimoto authored on 2009-11-16
432
    }
433
    
cleanup
yuki-kimoto authored on 2010-10-17
434
    # Arguments
added table not specified ex...
Yuki Kimoto authored on 2011-01-21
435
    my $table  = $args{table};
436
    croak qq{"table" option must be specified} unless $table;
cleanup
yuki-kimoto authored on 2010-10-17
437
    my $param  = $args{param} || {};
438
    my $append = $args{append} || '';
439
    my $filter = $args{filter};
440
    
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
441
    # Columns
442
    my @columns;
443
    my $safety = $self->safety_column_name;
444
    foreach my $column (keys %$param) {
445
        croak qq{"$column" is not safety column name}
446
          unless $column =~ /$safety/;
447
        push @columns, $column;
448
    }
cleanup
yuki-kimoto authored on 2010-10-17
449
    
cleanup
Yuki Kimoto authored on 2011-01-27
450
    # SQL stack
451
    my @sql;
452
    
453
    # Insert
454
    push @sql, "insert into $table {insert_param ". join(' ', @columns) . '}';
455
    push @sql, $append if $append;
456
    
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
457
    # SQL
cleanup
Yuki Kimoto authored on 2011-01-27
458
    my $sql = join (' ', @sql);
packaging one directory
yuki-kimoto authored on 2009-11-16
459
    
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
460
    # Create query
cleanup
Yuki Kimoto authored on 2011-01-27
461
    my $query = $self->create_query($sql);
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
462
    return $query if $args{query};
463
    
packaging one directory
yuki-kimoto authored on 2009-11-16
464
    # Execute query
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
465
    my $ret_val = $self->execute(
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
466
        $query,
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
467
        param  => $param,
468
        filter => $filter,
renamed auto_filter to apply...
Yuki Kimoto authored on 2011-01-12
469
        table => $table
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
470
    );
packaging one directory
yuki-kimoto authored on 2009-11-16
471
    
472
    return $ret_val;
473
}
474

            
pod fix
Yuki Kimoto authored on 2011-01-21
475
sub each_column {
added experimental iterate_a...
Yuki Kimoto authored on 2010-12-22
476
    my ($self, $cb) = @_;
477
    
478
    # Iterate all tables
479
    my $sth_tables = $self->dbh->table_info;
480
    while (my $table_info = $sth_tables->fetchrow_hashref) {
481
        
482
        # Table
483
        my $table = $table_info->{TABLE_NAME};
484
        
485
        # Iterate all columns
486
        my $sth_columns = $self->dbh->column_info(undef, undef, $table, '%');
487
        while (my $column_info = $sth_columns->fetchrow_hashref) {
488
            my $column = $column_info->{COLUMN_NAME};
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
489
            $self->$cb($table, $column, $column_info);
added experimental iterate_a...
Yuki Kimoto authored on 2010-12-22
490
        }
491
    }
492
}
493

            
added dbi_options attribute
kimoto authored on 2010-12-20
494
sub new {
495
    my $self = shift->SUPER::new(@_);
496
    
497
    # Check attribute names
498
    my @attrs = keys %$self;
499
    foreach my $attr (@attrs) {
500
        croak qq{"$attr" is invalid attribute name}
501
          unless $self->can($attr);
502
    }
cleanup
Yuki Kimoto authored on 2011-01-25
503

            
504
    $self->register_tag(
505
        '?'     => \&DBIx::Custom::Tag::placeholder,
506
        '='     => \&DBIx::Custom::Tag::equal,
507
        '<>'    => \&DBIx::Custom::Tag::not_equal,
508
        '>'     => \&DBIx::Custom::Tag::greater_than,
509
        '<'     => \&DBIx::Custom::Tag::lower_than,
510
        '>='    => \&DBIx::Custom::Tag::greater_than_equal,
511
        '<='    => \&DBIx::Custom::Tag::lower_than_equal,
512
        'like'  => \&DBIx::Custom::Tag::like,
513
        'in'    => \&DBIx::Custom::Tag::in,
514
        'insert_param' => \&DBIx::Custom::Tag::insert_param,
515
        'update_param' => \&DBIx::Custom::Tag::update_param
516
    );
added dbi_options attribute
kimoto authored on 2010-12-20
517
    
518
    return $self;
519
}
520

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

            
cleanup
yuki-kimoto authored on 2010-10-17
523
sub register_filter {
524
    my $invocant = shift;
525
    
526
    # Register filter
527
    my $filters = ref $_[0] eq 'HASH' ? $_[0] : {@_};
528
    $invocant->filters({%{$invocant->filters}, %$filters});
529
    
530
    return $invocant;
531
}
packaging one directory
yuki-kimoto authored on 2009-11-16
532

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

            
refactoring select
yuki-kimoto authored on 2010-04-28
535
our %VALID_SELECT_ARGS
add experimental selection o...
Yuki Kimoto authored on 2011-02-09
536
  = map { $_ => 1 } qw/table column where append relation filter query selection/;
refactoring select
yuki-kimoto authored on 2010-04-28
537

            
packaging one directory
yuki-kimoto authored on 2009-11-16
538
sub select {
select, insert, update, upda...
yuki-kimoto authored on 2010-06-14
539
    my ($self, %args) = @_;
packaging one directory
yuki-kimoto authored on 2009-11-16
540
    
refactoring select
yuki-kimoto authored on 2010-04-28
541
    # Check arguments
select, insert, update, upda...
yuki-kimoto authored on 2010-06-14
542
    foreach my $name (keys %args) {
add tests
yuki-kimoto authored on 2010-08-10
543
        croak qq{"$name" is invalid argument}
refactoring select
yuki-kimoto authored on 2010-04-28
544
          unless $VALID_SELECT_ARGS{$name};
545
    }
packaging one directory
yuki-kimoto authored on 2009-11-16
546
    
refactoring select
yuki-kimoto authored on 2010-04-28
547
    # Arguments
added table not specified ex...
Yuki Kimoto authored on 2011-01-21
548
    my $table = $args{table};
549
    my $tables = ref $table eq 'ARRAY' ? $table
550
               : defined $table ? [$table]
551
               : [];
add experimental selection o...
Yuki Kimoto authored on 2011-02-09
552
    my $columns   = $args{column} || [];
553
    my $selection = $args{selection} || '';
554
    my $where     = $args{where} || {};
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
555
    my $relation  = $args{relation} || {};
add experimental selection o...
Yuki Kimoto authored on 2011-02-09
556
    my $append    = $args{append};
557
    my $filter    = $args{filter};
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-21
558

            
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
559
    # Relation
560
    if (!$selection && keys %$relation) {
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-21
561
        foreach my $rcolumn (keys %$relation) {
562
            my $table1 = (split (/\./, $rcolumn))[0];
563
            my $table2 = (split (/\./, $relation->{$rcolumn}))[0];
564
            
565
            my $table1_exists;
566
            my $table2_exists;
567
            foreach my $table (@$tables) {
568
                $table1_exists = 1 if $table eq $table1;
569
                $table2_exists = 1 if $table eq $table2;
570
            }
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
571
            unshift @$tables, $table1 unless $table1_exists;
572
            unshift @$tables, $table2 unless $table2_exists;
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-21
573
        }
574
    }
packaging one directory
yuki-kimoto authored on 2009-11-16
575
    
cleanup
Yuki Kimoto authored on 2011-01-27
576
    # SQL stack
577
    my @sql;
578
    
579
    push @sql, 'select';
packaging one directory
yuki-kimoto authored on 2009-11-16
580
    
add experimental selection o...
Yuki Kimoto authored on 2011-02-09
581
    if ($selection) {
582
        croak qq{Can't contain "where" clause in selection}
583
          if $selection =~ /\swhere\s/;
584
        push @sql, $selection;
585
    }
586
    else {
587
        # Column clause
588
        if (@$columns) {
589
            foreach my $column (@$columns) {
590
                push @sql, ($column, ',');
591
            }
592
            pop @sql if $sql[-1] eq ',';
593
        }
594
        else { push @sql, '*' }
595
        
596
        # Table
597
        croak qq{"table" option must be specified} unless @$tables;
598
        push @sql, 'from';
599
        foreach my $table (@$tables) {
600
            push @sql, ($table, ',');
packaging one directory
yuki-kimoto authored on 2009-11-16
601
        }
cleanup
Yuki Kimoto authored on 2011-01-27
602
        pop @sql if $sql[-1] eq ',';
packaging one directory
yuki-kimoto authored on 2009-11-16
603
    }
604
    
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
605
    # Where
606
    my $w;
added experimental DBIx::Cus...
Yuki Kimoto authored on 2011-01-18
607
    if (ref $where eq 'HASH') {
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
608
        my $clause = ['and'];
609
        push @$clause, "{= $_}" for keys %$where;
610
        $w = $self->where;
611
        $w->clause($clause);
612
        $w->param($where);
added experimental DBIx::Cus...
Yuki Kimoto authored on 2011-01-18
613
    }
614
    elsif (ref $where eq 'DBIx::Custom::Where') {
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
615
        $w = $where;
616
        $where = $w->param;
packaging one directory
yuki-kimoto authored on 2009-11-16
617
    }
618
    
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
619
    croak qq{"where" must be hash reference or DBIx::Custom::Where object}
620
      unless ref $w eq 'DBIx::Custom::Where';
621
    
622
    # String where
623
    my $swhere = "$w";
cleanup
Yuki Kimoto authored on 2011-01-27
624
    push @sql, $swhere;
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
625
    
added commit method
yuki-kimoto authored on 2010-05-27
626
    # Relation
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
627
    if (!$selection && keys %$relation) {
cleanup
Yuki Kimoto authored on 2011-01-27
628
        push @sql, $swhere eq '' ? 'where' : 'and';
629
        foreach my $rcolumn (keys %$relation) {
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-21
630
            my $table1 = (split (/\./, $rcolumn))[0];
631
            my $table2 = (split (/\./, $relation->{$rcolumn}))[0];
632
            push @$tables, ($table1, $table2);
633
            
cleanup
Yuki Kimoto authored on 2011-01-27
634
            push @sql, ("$rcolumn = " . $relation->{$rcolumn},  'and');
packaging one directory
yuki-kimoto authored on 2009-11-16
635
        }
636
    }
cleanup
Yuki Kimoto authored on 2011-01-27
637
    pop @sql if $sql[-1] eq 'and';
added commit method
yuki-kimoto authored on 2010-05-27
638
    
cleanup
Yuki Kimoto authored on 2011-01-27
639
    # Append statement
640
    push @sql, $append if $append;
641
    
642
    # SQL
643
    my $sql = join (' ', @sql);
packaging one directory
yuki-kimoto authored on 2009-11-16
644
    
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
645
    # Create query
cleanup
Yuki Kimoto authored on 2011-01-27
646
    my $query = $self->create_query($sql);
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
647
    return $query if $args{query};
648
    
packaging one directory
yuki-kimoto authored on 2009-11-16
649
    # Execute query
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
650
    my $result = $self->execute(
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
651
        $query, param  => $where, filter => $filter,
652
        table => $tables);
packaging one directory
yuki-kimoto authored on 2009-11-16
653
    
654
    return $result;
655
}
656

            
add experimental update_at()...
Yuki Kimoto authored on 2011-02-21
657
our %VALID_SELECT_AT_ARGS
658
  = map { $_ => 1 } qw/table column where append relation filter query selection
659
                       param primary_key/;
660

            
661
sub select_at {
662
    my ($self, %args) = @_;
663
    
664
    # Check arguments
665
    foreach my $name (keys %args) {
666
        croak qq{"$name" is invalid argument}
667
          unless $VALID_SELECT_AT_ARGS{$name};
668
    }
669
    
670
    # Primary key
671
    my $primary_keys = delete $args{primary_key};
672
    $primary_keys = [$primary_keys] unless ref $primary_keys;
673
    
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
674
    # Table
675
    croak qq{"table" option must be specified} unless $args{table};
676
    my $table = ref $args{table} ? $args{table}->[-1] : $args{table};
677
    
add experimental update_at()...
Yuki Kimoto authored on 2011-02-21
678
    # Where clause
679
    my $where = {};
680
    if (exists $args{where}) {
681
        my $where_columns = delete $args{where};
682
        $where_columns = [$where_columns] unless ref $where_columns;
683
        
684
        for(my $i = 0; $i < @$primary_keys; $i ++) {
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
685
           $where->{$table . '.' . $primary_keys->[$i]} = $where_columns->[$i];
add experimental update_at()...
Yuki Kimoto authored on 2011-02-21
686
        }
687
    }
688
    elsif (exists $args{param}) {
689
        my $param = delete $args{param};
690
        for(my $i = 0; $i < @$primary_keys; $i ++) {
691
           $where->{$primary_keys->[$i]}
692
             = delete $param->{$primary_keys->[$i]};
693
        }
694
    }
695
    
696
    return $self->select(where => $where, %args);
697
}
698

            
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
699
sub model {
700
    my ($self, $name, $model) = @_;
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
701
    
702
    # Set
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
703
    if ($model) {
add models() attribute
Yuki Kimoto authored on 2011-02-21
704
        $self->models->{$name} = $model;
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
705
        return $self;
706
    }
707
    
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
708
    # Check model existance
709
    croak qq{Model "$name" is not included}
add models() attribute
Yuki Kimoto authored on 2011-02-21
710
      unless $self->models->{$name};
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
711
    
712
    # Get
add models() attribute
Yuki Kimoto authored on 2011-02-21
713
    return $self->models->{$name};
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
714
}
715

            
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
716
sub include_model {
717
    my ($self, $name_space, $model_infos) = @_;
remove DBIx::Custom::Model
Yuki Kimoto authored on 2011-01-12
718
    
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
719
    $name_space ||= '';
720
    unless ($model_infos) {
721
        # Load name space module
722
        croak qq{"$name_space" is invalid class name}
723
          if $name_space =~ /[^\w:]/;
724
        eval "use $name_space";
725
        croak qq{Name space module "$name_space.pm" is needed. $@} if $@;
table object call dbi object...
Yuki Kimoto authored on 2011-01-25
726
        
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
727
        # Search model modules
728
        my $path = $INC{"$name_space.pm"};
729
        $path =~ s/\.pm$//;
730
        opendir my $dh, $path
731
          or croak qq{Can't open directory "$path": $!};
732
        $model_infos = [];
733
        while (my $module = readdir $dh) {
734
            push @$model_infos, $module
735
              if $module =~ s/\.pm$//;
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
736
        }
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
737
        
738
        close $dh;
739
    }
740
    
741
    foreach my $model_info (@$model_infos) {
742
        
743
        # Model name and class
744
        my $model_name;
745
        my $model_class;
746
        if (ref $model_info eq 'HASH') {
747
            $model_name = (keys %$model_info)[0];
748
            $model_class = $model_info->{$model_name};
749
        }
750
        else { $model_name = $model_class = $model_info }
751
        my $mclass = "${name_space}::$model_class";
table object call dbi object...
Yuki Kimoto authored on 2011-01-25
752
        
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
753
        # Load
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
754
        croak qq{"$mclass" is invalid class name}
755
          if $mclass =~ /[^\w:]/;
756
        unless ($mclass->can('isa')) {
757
            eval "use $mclass";
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
758
            croak $@ if $@;
759
        }
table object call dbi object...
Yuki Kimoto authored on 2011-01-25
760
        
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
761
        # Instantiate
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
762
        my $model = $mclass->new(dbi => $self);
763
        $model->table($model_name) unless $model->table;
removed experimental DBIx::C...
Yuki Kimoto authored on 2011-01-28
764
        
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
765
        # Set
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
766
        $self->model($model_name, $model);
table object call dbi object...
Yuki Kimoto authored on 2011-01-25
767
    }
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
768
    return $self;
remove DBIx::Custom::Model
Yuki Kimoto authored on 2011-01-12
769
}
770

            
add experimental setup_model...
Yuki Kimoto authored on 2011-02-21
771
sub setup_model {
772
    my $self = shift;
773
    
774
    $self->each_column(
775
        sub {
776
            my ($self, $table, $column, $column_info) = @_;
777
            
778
            if (my $model = $self->models->{$table}) {
779
                push @{$model->columns}, $column;
780
            }
781
        }
782
    );
783
}
784

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

            
789
sub update {
790
    my ($self, %args) = @_;
version 0.0901
yuki-kimoto authored on 2009-12-17
791
    
cleanup
yuki-kimoto authored on 2010-10-17
792
    # Check arguments
793
    foreach my $name (keys %args) {
794
        croak qq{"$name" is invalid argument}
795
          unless $VALID_UPDATE_ARGS{$name};
removed reconnect method
yuki-kimoto authored on 2010-05-28
796
    }
added cache_method attribute
yuki-kimoto authored on 2010-06-25
797
    
cleanup
yuki-kimoto authored on 2010-10-17
798
    # Arguments
799
    my $table            = $args{table} || '';
added table not specified ex...
Yuki Kimoto authored on 2011-01-21
800
    croak qq{"table" option must be specified} unless $table;
cleanup
yuki-kimoto authored on 2010-10-17
801
    my $param            = $args{param} || {};
802
    my $where            = $args{where} || {};
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
803
    my $append           = $args{append} || '';
cleanup
yuki-kimoto authored on 2010-10-17
804
    my $filter           = $args{filter};
805
    my $allow_update_all = $args{allow_update_all};
version 0.0901
yuki-kimoto authored on 2009-12-17
806
    
cleanup
yuki-kimoto authored on 2010-10-17
807
    # Update keys
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
808
    my @clumns = keys %$param;
809

            
810
    # Columns
811
    my @columns;
812
    my $safety = $self->safety_column_name;
813
    foreach my $column (keys %$param) {
814
        croak qq{"$column" is not safety column name}
815
          unless $column =~ /$safety/;
816
        push @columns, $column;
817
    }
818
        
cleanup
yuki-kimoto authored on 2010-10-17
819
    # Update clause
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
820
    my $update_clause = '{update_param ' . join(' ', @clumns) . '}';
improved delete() and update...
Yuki Kimoto authored on 2011-01-26
821

            
822
    # Where
823
    my $w;
824
    if (ref $where eq 'HASH') {
825
        my $clause = ['and'];
826
        push @$clause, "{= $_}" for keys %$where;
827
        $w = $self->where;
828
        $w->clause($clause);
829
        $w->param($where);
830
    }
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
831
    elsif (ref $where eq 'DBIx::Custom::Where') {
832
        $w = $where;
833
        $where = $w->param;
834
    }  
removed experimental registe...
yuki-kimoto authored on 2010-08-24
835
    
improved delete() and update...
Yuki Kimoto authored on 2011-01-26
836
    croak qq{"where" must be hash refernce or DBIx::Custom::Where object}
837
      unless ref $w eq 'DBIx::Custom::Where';
removed reconnect method
yuki-kimoto authored on 2010-05-28
838
    
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
839
    # String where
840
    my $swhere = "$w";
improved delete() and update...
Yuki Kimoto authored on 2011-01-26
841
    
842
    croak qq{"where" must be specified}
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
843
      if "$swhere" eq '' && !$allow_update_all;
removed reconnect method
yuki-kimoto authored on 2010-05-28
844
    
cleanup
Yuki Kimoto authored on 2011-01-27
845
    # SQL stack
846
    my @sql;
847
    
848
    # Update
849
    push @sql, "update $table $update_clause $swhere";
850
    push @sql, $append if $append;
removed reconnect method
yuki-kimoto authored on 2010-05-28
851
    
cleanup
yuki-kimoto authored on 2010-10-17
852
    # Rearrange parameters
improved delete() and update...
Yuki Kimoto authored on 2011-01-26
853
    foreach my $wkey (keys %$where) {
removed reconnect method
yuki-kimoto authored on 2010-05-28
854
        
cleanup
yuki-kimoto authored on 2010-10-17
855
        if (exists $param->{$wkey}) {
856
            $param->{$wkey} = [$param->{$wkey}]
857
              unless ref $param->{$wkey} eq 'ARRAY';
858
            
859
            push @{$param->{$wkey}}, $where->{$wkey};
860
        }
861
        else {
862
            $param->{$wkey} = $where->{$wkey};
863
        }
removed reconnect method
yuki-kimoto authored on 2010-05-28
864
    }
cleanup
yuki-kimoto authored on 2010-10-17
865
    
cleanup
Yuki Kimoto authored on 2011-01-27
866
    # SQL
867
    my $sql = join(' ', @sql);
868
    
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
869
    # Create query
cleanup
Yuki Kimoto authored on 2011-01-27
870
    my $query = $self->create_query($sql);
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
871
    return $query if $args{query};
872
    
cleanup
yuki-kimoto authored on 2010-10-17
873
    # Execute query
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
874
    my $ret_val = $self->execute($query, param  => $param, 
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
875
                                 filter => $filter,
renamed auto_filter to apply...
Yuki Kimoto authored on 2011-01-12
876
                                 table => $table);
cleanup
yuki-kimoto authored on 2010-10-17
877
    
878
    return $ret_val;
removed reconnect method
yuki-kimoto authored on 2010-05-28
879
}
880

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

            
add experimental update_at()...
Yuki Kimoto authored on 2011-02-21
883
our %VALID_UPDATE_AT_ARGS
884
  = map { $_ => 1 } qw/table param
885
                       where append filter query
886
                       primary_key param/;
887

            
888
sub update_at {
889
    my ($self, %args) = @_;
890
    
891
    # Check arguments
892
    foreach my $name (keys %args) {
893
        croak qq{"$name" is invalid argument}
894
          unless $VALID_UPDATE_AT_ARGS{$name};
895
    }
896
    
897
    # Primary key
898
    my $primary_keys = delete $args{primary_key};
899
    $primary_keys = [$primary_keys] unless ref $primary_keys;
900
    
901
    # Where clause
902
    my $where = {};
903
    my $param = {};
904
    
905
    if (exists $args{where}) {
906
        my $where_columns = delete $args{where};
907
        $where_columns = [$where_columns] unless ref $where_columns;
908
        
909
        for(my $i = 0; $i < @$primary_keys; $i ++) {
910
           $where->{$primary_keys->[$i]} = $where_columns->[$i];
911
        }
912
    }
913
    elsif (exists $args{param}) {
914
        $param = delete $args{param};
915
        for(my $i = 0; $i < @$primary_keys; $i ++) {
916
           $where->{$primary_keys->[$i]}
917
             = delete $param->{$primary_keys->[$i]};
918
        }
919
    }
920
    
921
    return $self->update(where => $where, param => $param, %args);
922
}
923

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

            
927
    return DBIx::Custom::Where->new(
928
        query_builder => $self->query_builder,
929
        safety_column_name => $self->safety_column_name
930
    );
cleanup
Yuki Kimoto authored on 2011-01-25
931
}
added experimental DBIx::Cus...
Yuki Kimoto authored on 2011-01-18
932

            
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
933
sub _bind {
cleanup
Yuki Kimoto authored on 2011-01-12
934
    my ($self, $params, $columns, $filter) = @_;
removed reconnect method
yuki-kimoto authored on 2010-05-28
935
    
cleanup
Yuki Kimoto authored on 2011-01-12
936
    # bind values
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
937
    my @bind;
add tests
yuki-kimoto authored on 2010-08-08
938
    
removed reconnect method
yuki-kimoto authored on 2010-05-28
939
    # Build bind values
940
    my $count = {};
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
941
    my $not_exists = {};
cleanup
Yuki Kimoto authored on 2011-01-12
942
    foreach my $column (@$columns) {
removed reconnect method
yuki-kimoto authored on 2010-05-28
943
        
944
        # Value
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
945
        my $value;
946
        if(ref $params->{$column} eq 'ARRAY') {
947
            my $i = $count->{$column} || 0;
948
            $i += $not_exists->{$column} || 0;
949
            my $found;
950
            for (my $k = $i; $i < @{$params->{$column}}; $k++) {
951
                if (ref $params->{$column}->[$k] eq 'DBIx::Custom::NotExists') {
952
                    $not_exists->{$column}++;
953
                }
954
                else  {
955
                    $value = $params->{$column}->[$k];
956
                    $found = 1;
957
                    last
958
                }
959
            }
960
            next unless $found;
961
        }
962
        else { $value = $params->{$column} }
removed reconnect method
yuki-kimoto authored on 2010-05-28
963
        
cleanup
Yuki Kimoto authored on 2011-01-12
964
        # Filter
965
        my $f = $filter->{$column} || $self->{default_out_filter} || '';
cleanup
kimoto.yuki@gmail.com authored on 2010-12-21
966
        
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
967
        push @bind, $f ? $f->($value) : $value;
removed reconnect method
yuki-kimoto authored on 2010-05-28
968
        
969
        # Count up 
970
        $count->{$column}++;
971
    }
972
    
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
973
    return \@bind;
removed reconnect method
yuki-kimoto authored on 2010-05-28
974
}
975

            
cleanup
yuki-kimoto authored on 2010-10-17
976
sub _croak {
977
    my ($self, $error, $append) = @_;
978
    $append ||= "";
979
    
980
    # Verbose
981
    if ($Carp::Verbose) { croak $error }
982
    
983
    # Not verbose
984
    else {
985
        
986
        # Remove line and module infromation
987
        my $at_pos = rindex($error, ' at ');
988
        $error = substr($error, 0, $at_pos);
989
        $error =~ s/\s+$//;
990
        
991
        croak "$error$append";
992
    }
993
}
994

            
cleanup
Yuki Kimoto authored on 2011-01-25
995
# DEPRECATED!
cleanup
Yuki Kimoto authored on 2011-01-23
996
__PACKAGE__->attr(
997
    dbi_options => sub { {} },
998
    filter_check  => 1
999
);
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
1000

            
cleanup
Yuki Kimoto authored on 2011-01-25
1001
# DEPRECATED!
cleanup
Yuki Kimoto authored on 2011-01-12
1002
sub default_bind_filter {
1003
    my $self = shift;
1004
    
1005
    if (@_) {
1006
        my $fname = $_[0];
1007
        
1008
        if (@_ && !$fname) {
1009
            $self->{default_out_filter} = undef;
1010
        }
1011
        else {
many changed
Yuki Kimoto authored on 2011-01-23
1012
            croak qq{Filter "$fname" is not registered}
cleanup
Yuki Kimoto authored on 2011-01-12
1013
              unless exists $self->filters->{$fname};
1014
        
1015
            $self->{default_out_filter} = $self->filters->{$fname};
1016
        }
1017
        return $self;
1018
    }
1019
    
1020
    return $self->{default_out_filter};
1021
}
1022

            
cleanup
Yuki Kimoto authored on 2011-01-25
1023
# DEPRECATED!
cleanup
Yuki Kimoto authored on 2011-01-12
1024
sub default_fetch_filter {
1025
    my $self = shift;
1026
    
1027
    if (@_) {
many changed
Yuki Kimoto authored on 2011-01-23
1028
        my $fname = $_[0];
1029

            
cleanup
Yuki Kimoto authored on 2011-01-12
1030
        if (@_ && !$fname) {
1031
            $self->{default_in_filter} = undef;
1032
        }
1033
        else {
many changed
Yuki Kimoto authored on 2011-01-23
1034
            croak qq{Filter "$fname" is not registered}
cleanup
Yuki Kimoto authored on 2011-01-12
1035
              unless exists $self->filters->{$fname};
1036
        
1037
            $self->{default_in_filter} = $self->filters->{$fname};
1038
        }
1039
        
1040
        return $self;
1041
    }
1042
    
many changed
Yuki Kimoto authored on 2011-01-23
1043
    return $self->{default_in_filter};
cleanup
Yuki Kimoto authored on 2011-01-12
1044
}
1045

            
cleanup
Yuki Kimoto authored on 2011-01-25
1046
# DEPRECATED!
renamed DBIx::Custom::TagPro...
Yuki Kimoto authored on 2011-01-24
1047
sub register_tag_processor {
1048
    return shift->query_builder->register_tag_processor(@_);
1049
}
1050

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

            
removed reconnect method
yuki-kimoto authored on 2010-05-28
1053
=head1 NAME
1054

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

            
1057
=head1 SYNOPSYS
cleanup
yuki-kimoto authored on 2010-08-05
1058

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

            
removed reconnect method
yuki-kimoto authored on 2010-05-28
1064
    # Insert 
added insert, update, update...
Yuki Kimoto authored on 2011-01-04
1065
    $dbi->insert(table  => 'book',
renamed update tag to update...
yuki-kimoto authored on 2010-08-09
1066
                 param  => {title => 'Perl', author => 'Ken'},
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
1067
                 filter => {title => 'to_something'});
removed reconnect method
yuki-kimoto authored on 2010-05-28
1068
    
1069
    # Update 
added insert, update, update...
Yuki Kimoto authored on 2011-01-04
1070
    $dbi->update(table  => 'book', 
renamed update tag to update...
yuki-kimoto authored on 2010-08-09
1071
                 param  => {title => 'Perl', author => 'Ken'}, 
removed reconnect method
yuki-kimoto authored on 2010-05-28
1072
                 where  => {id => 5},
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
1073
                 filter => {title => 'to_something'});
removed reconnect method
yuki-kimoto authored on 2010-05-28
1074
    
1075
    # Update all
added insert, update, update...
Yuki Kimoto authored on 2011-01-04
1076
    $dbi->update_all(table  => 'book',
renamed update tag to update...
yuki-kimoto authored on 2010-08-09
1077
                     param  => {title => 'Perl'},
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
1078
                     filter => {title => 'to_something'});
removed reconnect method
yuki-kimoto authored on 2010-05-28
1079
    
1080
    # Delete
added insert, update, update...
Yuki Kimoto authored on 2011-01-04
1081
    $dbi->delete(table  => 'book',
removed reconnect method
yuki-kimoto authored on 2010-05-28
1082
                 where  => {author => 'Ken'},
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
1083
                 filter => {title => 'to_something'});
removed reconnect method
yuki-kimoto authored on 2010-05-28
1084
    
1085
    # Delete all
added insert, update, update...
Yuki Kimoto authored on 2011-01-04
1086
    $dbi->delete_all(table => 'book');
cleanup
yuki-kimoto authored on 2010-08-05
1087

            
removed reconnect method
yuki-kimoto authored on 2010-05-28
1088
    # Select
renamed fetch_rows to fetch_...
yuki-kimoto authored on 2010-05-01
1089
    my $result = $dbi->select(
added insert, update, update...
Yuki Kimoto authored on 2011-01-04
1090
        table  => 'book',
update document
yuki-kimoto authored on 2010-05-27
1091
        column => [qw/author title/],
1092
        where  => {author => 'Ken'},
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
1093
        relation => {'book.id' => 'rental.book_id'},
updated document
yuki-kimoto authored on 2010-08-08
1094
        append => 'order by id limit 5',
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
1095
        filter => {title => 'to_something'}
added commit method
yuki-kimoto authored on 2010-05-27
1096
    );
cleanup
yuki-kimoto authored on 2010-08-05
1097

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

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

            
1112
    # Get DBI object
1113
    my $dbh = $dbi->dbh;
1114

            
removed register_format()
yuki-kimoto authored on 2010-05-26
1115
    # Fetch
1116
    while (my $row = $result->fetch) {
1117
        # ...
1118
    }
1119
    
1120
    # Fetch hash
1121
    while (my $row = $result->fetch_hash) {
1122
        
1123
    }
1124
    
renamed update tag to update...
yuki-kimoto authored on 2010-08-09
1125
=head1 DESCRIPTIONS
removed reconnect method
yuki-kimoto authored on 2010-05-28
1126

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

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

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

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

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

            
1149
=head1 GUIDE
1150

            
1151
L<DBIx::Custom::Guide> - L<DBIx::Custom> complete guide
1152

            
1153
=head1 EXAMPLES
1154

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

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

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

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

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

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

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

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

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

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

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

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

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

            
1187
DBI options.
add default_dbi_option()
Yuki Kimoto authored on 2011-02-19
1188

            
1189
Each option specified can ovewrite C<default_dbi_option>.
1190

            
1191
C<connect()> method use this value to connect the database.
1192

            
1193

            
1194
=head2 C<default_dbi_option>
1195

            
1196
    my $default_dbi_option = $dbi->default_dbi_option;
1197
    $dbi            = $dbi->default_dbi_option($default_dbi_option);
1198

            
1199
DBI default options.
1200

            
1201
    RaiseError => 1,
1202
    PrintError => 0,
1203
    AutoCommit => 1,
1204

            
added dbi_options attribute
kimoto authored on 2010-12-20
1205
C<connect()> method use this value to connect the database.
1206

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

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

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

            
add models() attribute
Yuki Kimoto authored on 2011-02-21
1214
Filters
1215

            
1216
=head2 C<(experimental) models>
1217

            
1218
    my $models = $dbi->models;
1219
    $dbi       = $dbi->models(\%models);
1220

            
1221
Models
1222

            
cleanup
yuki-kimoto authored on 2010-10-17
1223
=head2 C<password>
1224

            
1225
    my $password = $dbi->password;
1226
    $dbi         = $dbi->password('lkj&le`@s');
1227

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

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

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

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

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

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

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

            
update pod
Yuki Kimoto authored on 2011-01-27
1248
=head2 C<(experimental) safety_column_name>
1249

            
1250
    my $safety_column_name = $self->safety_column_name;
1251
    $dbi                   = $self->safety_column_name($name);
1252

            
1253
Safety column name regex.
1254
Default is qr/^[\w\.]*$/
1255

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

            
cleanup
yuki-kimoto authored on 2010-10-17
1258
    my $user = $dbi->user;
1259
    $dbi     = $dbi->user('Ken');
cleanup
yuki-kimoto authored on 2010-08-05
1260

            
cleanup
yuki-kimoto authored on 2010-10-17
1261
User name.
1262
C<connect()> method use this value to connect the database.
update pod
Yuki Kimoto authored on 2011-01-27
1263

            
cleanup
yuki-kimoto authored on 2010-10-17
1264
=head1 METHODS
added commit method
yuki-kimoto authored on 2010-05-27
1265

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

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

            
renamed auto_filter to apply...
Yuki Kimoto authored on 2011-01-12
1272
    $dbi->apply_filter(
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
1273
        $table,
fix bug : filter can't over...
Yuki Kimoto authored on 2011-02-09
1274
        $column1 => {in => $infilter1, out => $outfilter1, end => $endfilter1}
1275
        $column2 => {in => $infilter2, out => $outfilter2, end =. $endfilter2}
renamed auto_filter to apply...
Yuki Kimoto authored on 2011-01-12
1276
        ...,
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
1277
    );
1278

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

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

            
cleanup
Yuki Kimoto authored on 2010-12-21
1286
    $result = $dbi->execute(
1287
        "select * from table1 where {= key1} and {= key2};",
1288
         param => {key1 => 1, key2 => 2},
renamed auto_filter to apply...
Yuki Kimoto authored on 2011-01-12
1289
         table => ['table1']
cleanup
Yuki Kimoto authored on 2010-12-21
1290
    );
fix bug : filter can't over...
Yuki Kimoto authored on 2011-02-09
1291

            
1292
You can use three name as column name.
1293

            
1294
    1. column        : author
1295
    2. table.column  : book.author
1296
    3. table__column : book__author
1297

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

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

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

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

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

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

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

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

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

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

            
cleanup
yuki-kimoto authored on 2010-08-05
1333
    $dbi->delete(table  => $table,
1334
                 where  => \%where,
1335
                 append => $append,
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
1336
                 filter => \%filter,
1337
                 query  => 1);
bind_filter argument is chan...
yuki-kimoto authored on 2009-11-19
1338

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

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

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

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

            
add experimental update_at()...
Yuki Kimoto authored on 2011-02-21
1358
=head3 C<delete_at()>
1359

            
1360
To delete row by using primary key, use C<delete_at()>
1361

            
1362
    $dbi->delete_at(
1363
        table => 'book',
1364
        primary_key => ['id'],
1365
        where => ['123']
1366
    );
1367

            
1368
In this example, row which id column is 123 is deleted.
1369
NOTE that you must pass array reference as C<where>.
1370

            
1371
You can also write arguments like this.
1372

            
1373
    $dbi->delete_at(
1374
        table => 'book',
1375
        primary_key => ['id'],
1376
        param => {id => '123'}
1377
    );
1378

            
cleanup
yuki-kimoto authored on 2010-10-17
1379
=head2 C<insert>
1380

            
1381
    $dbi->insert(table  => $table, 
1382
                 param  => \%param,
1383
                 append => $append,
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
1384
                 filter => \%filter,
1385
                 query  => 1);
cleanup
yuki-kimoto authored on 2010-10-17
1386

            
1387
Execute insert statement.
1388
C<insert> method have C<table>, C<param>, C<append>
1389
and C<filter> arguments.
1390
C<table> is a table name.
1391
C<param> is the pairs of column name value. this must be hash reference.
1392
C<append> is a string added at the end of the SQL statement.
1393
C<filter> is filters when parameter binding is executed.
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
1394
C<query> is if you don't execute sql and get L<DBIx::Custom::Query> object as return value.
1395
default to 0. This is experimental.
cleanup
yuki-kimoto authored on 2010-10-17
1396
This is overwrites C<default_bind_filter>.
1397
Return value of C<insert()> is the count of affected rows.
1398

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

            
pod fix
Yuki Kimoto authored on 2011-01-21
1401
    $dbi->each_column(
added experimental iterate_a...
Yuki Kimoto authored on 2010-12-22
1402
        sub {
add experimental setup_model...
Yuki Kimoto authored on 2011-02-21
1403
            my ($self, $table, $column, $column_info) = @_;
added experimental iterate_a...
Yuki Kimoto authored on 2010-12-22
1404
            
add experimental setup_model...
Yuki Kimoto authored on 2011-02-21
1405
            my $type = $column_info->{TYPE_NAME};
pod fix
Yuki Kimoto authored on 2011-01-21
1406
            
1407
            if ($type eq 'DATE') {
1408
                # ...
1409
            }
added experimental iterate_a...
Yuki Kimoto authored on 2010-12-22
1410
        }
1411
    );
pod fix
Yuki Kimoto authored on 2011-01-21
1412
Get column informations from database.
1413
Argument is callback.
1414
You can do anything in callback.
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
1415
Callback receive four arguments, dbi object, table name,
add experimental setup_model...
Yuki Kimoto authored on 2011-02-21
1416
column name and column information.
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
1417

            
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1418
=head2 C<(experimental) include_model>
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1419

            
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1420
    $dbi->include_model(
1421
        'MyModel' => [
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1422
            'book', 'person', 'company'
1423
        ]
1424
    );
1425

            
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1426
Include models. First argument is name space.
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1427
Second argument is array reference of class base names.
1428

            
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1429
If you don't specify second argument, All models under name space is
1430
included.
1431

            
1432
    $dbi->include_model('MyModel');
1433

            
1434
Note that in this case name spece module is needed.
1435

            
1436
    # MyModel.pm
1437
    package MyModel;
1438
    
1439
    use base 'DBIx::Custom::Model';
1440

            
1441
The following model is instantiated and included.
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1442

            
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1443
    MyModel::book
1444
    MyModel::person
1445
    MyModel::company
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1446

            
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1447
You can get these instance by C<model()>.
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1448

            
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1449
    my $book_model = $dbi->model('book');
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1450

            
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1451
If you want to other name as model class,
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1452
you can do like this.
1453

            
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1454
    $dbi->include_model(
1455
        'MyModel' => [
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1456
            {'book' => 'Book'},
1457
            {'person' => 'Person'}
1458
        ]
1459
    );
1460

            
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
1461
=head2 C<(experimental) method>
1462

            
1463
    $dbi->method(
1464
        update_or_insert => sub {
1465
            my $self = shift;
1466
            # do something
1467
        },
1468
        find_or_create   => sub {
1469
            my $self = shift;
1470
            # do something
1471
        }
1472
    );
1473

            
1474
Register method. These method is called from L<DBIx::Custom> object directory.
1475

            
1476
    $dbi->update_or_insert;
1477
    $dbi->find_or_create;
1478

            
1479
=head2 C<new>
1480

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

            
1484
Create a new L<DBIx::Custom> object.
1485

            
1486
=head2 C<(experimental) not_exists>
1487

            
1488
    my $not_exists = $dbi->not_exists;
1489

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

            
cleanup
yuki-kimoto authored on 2010-10-17
1492
=head2 C<register_filter>
1493

            
1494
    $dbi->register_filter(%filters);
1495
    $dbi->register_filter(\%filters);
1496
    
1497
Register filter. Registered filters is available in the following attributes
1498
or arguments.
1499

            
1500
=over 4
1501

            
1502
=item *
1503

            
1504
C<filter> argument of C<insert()>, C<update()>,
1505
C<update_all()>, C<delete()>, C<delete_all()>, C<select()>
1506
methods
1507

            
1508
=item *
1509

            
1510
C<execute()> method
1511

            
1512
=item *
1513

            
1514
C<default_filter> and C<filter> of C<DBIx::Custom::Query>
1515

            
1516
=item *
1517

            
1518
C<default_filter> and C<filter> of C<DBIx::Custom::Result>
1519

            
1520
=back
1521

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

            
renamed DBIx::Custom::TagPro...
Yuki Kimoto authored on 2011-01-24
1524
    $dbi->register_tag(
added register_tag_processor
Yuki Kimoto authored on 2011-01-20
1525
        limit => sub {
1526
            ...;
1527
        }
1528
    );
1529

            
cleanup
Yuki Kimoto authored on 2011-01-25
1530
Register tag.
added register_tag_processor
Yuki Kimoto authored on 2011-01-20
1531

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

            
1534
    $dbi->rollback;
1535

            
1536
Rollback transaction.
1537
This is same as L<DBI>'s C<rollback>.
1538

            
removed DBIx::Custom commit ...
yuki-kimoto authored on 2010-07-14
1539
=head2 C<select>
packaging one directory
yuki-kimoto authored on 2009-11-16
1540
    
cleanup
yuki-kimoto authored on 2010-08-05
1541
    my $result = $dbi->select(table    => $table,
1542
                              column   => [@column],
1543
                              where    => \%where,
1544
                              append   => $append,
1545
                              relation => \%relation,
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
1546
                              filter   => \%filter,
add experimental selection o...
Yuki Kimoto authored on 2011-02-09
1547
                              query    => 1,
1548
                              selection => $selection);
update document
yuki-kimoto authored on 2009-11-19
1549

            
renamed build_query to creat...
yuki-kimoto authored on 2010-08-06
1550
Execute select statement.
cleanup
yuki-kimoto authored on 2010-08-09
1551
C<select> method have C<table>, C<column>, C<where>, C<append>,
renamed build_query to creat...
yuki-kimoto authored on 2010-08-06
1552
C<relation> and C<filter> arguments.
1553
C<table> is a table name.
cleanup
yuki-kimoto authored on 2010-08-09
1554
C<where> is where clause. this is normally hash reference.
renamed build_query to creat...
yuki-kimoto authored on 2010-08-06
1555
C<append> is a string added at the end of the SQL statement.
1556
C<filter> is filters when parameter binding is executed.
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
1557
C<query> is if you don't execute sql and get L<DBIx::Custom::Query> object as return value.
1558
default to 0. This is experimental.
add experimental selection o...
Yuki Kimoto authored on 2011-02-09
1559
C<selection> is string of column name and tables. This is experimental
1560

            
1561
    selection => 'name, location.name as location_name ' .
1562
                 'from company inner join location'
update document
yuki-kimoto authored on 2009-11-19
1563

            
cleanup
yuki-kimoto authored on 2010-08-09
1564
First element is a string. it contains tags,
1565
such as "{= title} or {like author}".
1566
Second element is paramters.
1567

            
add experimental update_at()...
Yuki Kimoto authored on 2011-02-21
1568
=head3 C<select_at()>
1569

            
1570
To select row by using primary key, use C<select_at()>.
1571

            
1572
    $dbi->select_at(table => 'book', primary_key => ['id'], where => ['123']);
1573

            
1574
In this example, row which id colunm is 123 is selected.
1575
NOTE that you must pass array reference as C<where>.
1576

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

            
cleanup
yuki-kimoto authored on 2010-10-17
1579
    $dbi->update(table  => $table, 
1580
                 param  => \%params,
1581
                 where  => \%where,
1582
                 append => $append,
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
1583
                 filter => \%filter,
1584
                 query  => 1)
removed reconnect method
yuki-kimoto authored on 2010-05-28
1585

            
cleanup
yuki-kimoto authored on 2010-10-17
1586
Execute update statement.
1587
C<update> method have C<table>, C<param>, C<where>, C<append>
1588
and C<filter> arguments.
1589
C<table> is a table name.
1590
C<param> is column-value pairs. this must be hash reference.
1591
C<where> is where clause. this must be hash reference.
1592
C<append> is a string added at the end of the SQL statement.
1593
C<filter> is filters when parameter binding is executed.
added experimental sugar met...
Yuki Kimoto authored on 2011-01-17
1594
C<query> is if you don't execute sql and get L<DBIx::Custom::Query> object as return value.
1595
default to 0. This is experimental.
cleanup
yuki-kimoto authored on 2010-10-17
1596
This is overwrites C<default_bind_filter>.
1597
Return value of C<update()> is the count of affected rows.
removed reconnect method
yuki-kimoto authored on 2010-05-28
1598

            
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1599
=head2 C<(experimental) model>
remove DBIx::Custom::Model
Yuki Kimoto authored on 2011-01-12
1600

            
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1601
    $dbi->model('book')->method(
remove DBIx::Custom::Model
Yuki Kimoto authored on 2011-01-12
1602
        insert => sub { ... },
1603
        update => sub { ... }
1604
    );
1605
    
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1606
    my $model = $dbi->model('book');
remove DBIx::Custom::Model
Yuki Kimoto authored on 2011-01-12
1607

            
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1608
Set and get a L<DBIx::Custom::Model> object,
remove DBIx::Custom::Model
Yuki Kimoto authored on 2011-01-12
1609

            
add experimental setup_model...
Yuki Kimoto authored on 2011-02-21
1610
=head2 C<(experimental) setup_model>
1611

            
1612
    $dbi->setup_model;
1613

            
1614
Setup all model objects.
1615
C<columns> and C<primary_key> is automatically set.
1616

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

            
cleanup
yuki-kimoto authored on 2010-10-17
1619
    $dbi->update_all(table  => $table, 
1620
                     param  => \%params,
1621
                     filter => \%filter,
1622
                     append => $append);
renamed build_query to creat...
yuki-kimoto authored on 2010-08-06
1623

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

            
add experimental update_at()...
Yuki Kimoto authored on 2011-02-21
1629
=head3 C<update_at()>
1630

            
1631
To update row by using primary key, use C<update_at()>
1632

            
1633
    $dbi->update_at(
1634
        table => 'book',
1635
        primary_key => ['id'],
1636
        where => ['123'],
1637
        param => {name => 'Ken'}
1638
    );
1639

            
1640
In this example, row which id column is 123 is updated.
1641
NOTE that you must pass array reference as C<where>.
1642
If C<param> contains primary key,
1643
the key and value is delete from C<param>.
1644

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

            
1647
    my $where = $dbi->where;
1648

            
1649
Create a new L<DBIx::Custom::Where> object.
1650

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

            
1653
    $dbi          = $dbi->cache_method(\&cache_method);
1654
    $cache_method = $dbi->cache_method
1655

            
1656
Method to set and get caches.
1657

            
cleanup
Yuki Kimoto authored on 2011-01-25
1658
=head1 Tags
1659

            
1660
The following tags is available.
1661

            
add experimental selection o...
Yuki Kimoto authored on 2011-02-09
1662
=head2 C<(experimental) table>
add table tag
Yuki Kimoto authored on 2011-02-09
1663

            
1664
Table tag
1665

            
1666
    {table TABLE}    ->    TABLE
1667

            
1668
This is used to teach what is applied table to C<execute()>.
1669

            
cleanup
Yuki Kimoto authored on 2011-01-25
1670
=head2 C<?>
1671

            
1672
Placeholder tag.
1673

            
1674
    {? NAME}    ->   ?
1675

            
1676
=head2 C<=>
1677

            
1678
Equal tag.
1679

            
1680
    {= NAME}    ->   NAME = ?
1681

            
1682
=head2 C<E<lt>E<gt>>
1683

            
1684
Not equal tag.
1685

            
1686
    {<> NAME}   ->   NAME <> ?
1687

            
1688
=head2 C<E<lt>>
1689

            
1690
Lower than tag
1691

            
1692
    {< NAME}    ->   NAME < ?
1693

            
1694
=head2 C<E<gt>>
1695

            
1696
Greater than tag
1697

            
1698
    {> NAME}    ->   NAME > ?
1699

            
1700
=head2 C<E<gt>=>
1701

            
1702
Greater than or equal tag
1703

            
1704
    {>= NAME}   ->   NAME >= ?
1705

            
1706
=head2 C<E<lt>=>
1707

            
1708
Lower than or equal tag
1709

            
1710
    {<= NAME}   ->   NAME <= ?
1711

            
1712
=head2 C<like>
1713

            
1714
Like tag
1715

            
1716
    {like NAME}   ->   NAME like ?
1717

            
1718
=head2 C<in>
1719

            
1720
In tag.
1721

            
1722
    {in NAME COUNT}   ->   NAME in [?, ?, ..]
1723

            
1724
=head2 C<insert_param>
1725

            
1726
Insert parameter tag.
1727

            
1728
    {insert_param NAME1 NAME2}   ->   (NAME1, NAME2) values (?, ?)
1729

            
1730
=head2 C<update_param>
1731

            
1732
Updata parameter tag.
1733

            
1734
    {update_param NAME1 NAME2}   ->   set NAME1 = ?, NAME2 = ?
1735

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

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

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

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

            
1745
C<< <kimoto.yuki at gmail.com> >>
1746

            
1747
L<http://github.com/yuki-kimoto/DBIx-Custom>
1748

            
removed reconnect method
yuki-kimoto authored on 2010-05-28
1749
=head1 AUTHOR
1750

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

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

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

            
1757
This program is free software; you can redistribute it and/or modify it
1758
under the same terms as Perl itself.
1759

            
1760
=cut
added cache_method attribute
yuki-kimoto authored on 2010-06-25
1761

            
1762