DBIx-Custom / lib / DBIx / Custom.pm /
Newer Older
3538 lines | 92.585kb
cleanup
yuki-kimoto authored on 2009-12-22
1
package DBIx::Custom;
added EXPERIMENTAL insert, u...
Yuki Kimoto authored on 2011-06-21
2
use Object::Simple -base;
cleanup
yuki-kimoto authored on 2009-12-22
3

            
micro optimization
Yuki Kimoto authored on 2011-11-16
4
our $VERSION = '0.2100';
fixed DBIx::Custom::QueryBui...
yuki-kimoto authored on 2010-08-15
5
use 5.008001;
cleanup
yuki-kimoto authored on 2009-12-22
6

            
packaging one directory
yuki-kimoto authored on 2009-11-16
7
use Carp 'croak';
8
use DBI;
9
use DBIx::Custom::Result;
cleanup
yuki-kimoto authored on 2010-02-11
10
use DBIx::Custom::Query;
cleanup
yuki-kimoto authored on 2010-08-05
11
use DBIx::Custom::QueryBuilder;
added experimental DBIx::Cus...
Yuki Kimoto authored on 2011-01-18
12
use DBIx::Custom::Where;
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
13
use DBIx::Custom::Model;
cleanup
Yuki Kimoto authored on 2011-01-25
14
use DBIx::Custom::Tag;
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
15
use DBIx::Custom::Order;
cleanup
Yuki Kimoto authored on 2011-04-25
16
use DBIx::Custom::Util qw/_array_to_hash _subname/;
added tests
Yuki Kimoto authored on 2011-08-26
17
use DBIx::Custom::Mapper;
- added EXPERIMENTAL pass at...
Yuki Kimoto authored on 2011-09-02
18
use DBIx::Custom::NotExists;
improved debug message
Yuki Kimoto authored on 2011-05-23
19
use Encode qw/encode encode_utf8 decode_utf8/;
cleanup
Yuki Kimoto authored on 2011-08-13
20
use Scalar::Util qw/weaken/;
added experimental use_next_...
Yuki Kimoto authored on 2011-11-16
21
use DBIx::Custom::Class::Inspector;
22

            
packaging one directory
yuki-kimoto authored on 2009-11-16
23

            
- added EXPERIMENTAL get_col...
Yuki Kimoto authored on 2011-08-16
24
has [qw/connector dsn password quote user exclude_table user_table_info
25
        user_column_info/],
removed from cache() and cac...
Yuki Kimoto authored on 2011-03-29
26
    cache => 0,
many changed
Yuki Kimoto authored on 2011-01-23
27
    cache_method => sub {
28
        sub {
29
            my $self = shift;
30
            
31
            $self->{_cached} ||= {};
32
            
33
            if (@_ > 1) {
update pod
Yuki Kimoto authored on 2011-03-13
34
                $self->{_cached}{$_[0]} = $_[1];
many changed
Yuki Kimoto authored on 2011-01-23
35
            }
36
            else {
update pod
Yuki Kimoto authored on 2011-03-13
37
                return $self->{_cached}{$_[0]};
many changed
Yuki Kimoto authored on 2011-01-23
38
            }
39
        }
update pod
Yuki Kimoto authored on 2011-03-13
40
    },
- dbi_option attribute is re...
Yuki Kimoto authored on 2011-10-05
41
    option => sub { {} },
42
    default_option => sub {
update pod
Yuki Kimoto authored on 2011-03-13
43
        {
44
            RaiseError => 1,
45
            PrintError => 0,
46
            AutoCommit => 1
47
        }
48
    },
fix tests
Yuki Kimoto authored on 2011-01-13
49
    filters => sub {
50
        {
51
            encode_utf8 => sub { encode_utf8($_[0]) },
52
            decode_utf8 => sub { decode_utf8($_[0]) }
53
        }
update pod
Yuki Kimoto authored on 2011-03-13
54
    },
added EXPERIMENTAL last_sql ...
Yuki Kimoto authored on 2011-07-11
55
    last_sql => '',
update pod
Yuki Kimoto authored on 2011-03-13
56
    models => sub { {} },
- insert timestamp option is...
Yuki Kimoto authored on 2011-10-25
57
    now => sub {
58
        sub {
59
            my ($sec, $min, $hour, $mday, $mon, $year) = localtime;
60
            $mon++;
61
            $year += 1900;
added EXPERIMENTAL insert cr...
Yuki Kimoto authored on 2011-10-25
62
            my $now = sprintf("%04d-%02d-%02d %02d:%02d:%02d",
63
              $year, $mon, $mday, $hour, $min, $sec);
64
            return $now;
- insert timestamp option is...
Yuki Kimoto authored on 2011-10-25
65
        }
66
    },
cleanup
Yuki Kimoto authored on 2011-08-13
67
    query_builder => sub {
68
        my $self = shift;
69
        my $builder = DBIx::Custom::QueryBuilder->new(dbi => $self);
70
        weaken $builder->{dbi};
71
        return $builder;
72
    },
update pod
Yuki Kimoto authored on 2011-03-13
73
    result_class  => 'DBIx::Custom::Result',
74
    safety_character => '\w',
cleanup test
Yuki Kimoto authored on 2011-08-10
75
    separator => '.',
- DBIx::Custom::QueryBuilder...
Yuki Kimoto authored on 2011-11-04
76
    stash => sub { {} };
cleanup
yuki-kimoto authored on 2010-10-17
77

            
added EXPERIMENTAL system_ta...
Yuki Kimoto authored on 2011-08-10
78
sub available_datatype {
test cleanup
Yuki Kimoto authored on 2011-08-10
79
    my $self = shift;
80
    
added EXPERIMENTAL system_ta...
Yuki Kimoto authored on 2011-08-10
81
    my $data_types = '';
cleanup
Yuki Kimoto authored on 2011-10-21
82
    for my $i (-1000 .. 1000) {
added EXPERIMENTAL system_ta...
Yuki Kimoto authored on 2011-08-10
83
         my $type_info = $self->dbh->type_info($i);
84
         my $data_type = $type_info->{DATA_TYPE};
85
         my $type_name = $type_info->{TYPE_NAME};
86
         $data_types .= "$data_type ($type_name)\n"
87
           if defined $data_type;
88
    }
89
    return "Data Type maybe equal to Type Name" unless $data_types;
90
    $data_types = "Data Type (Type name)\n" . $data_types;
91
    return $data_types;
92
}
93

            
94
sub available_typename {
95
    my $self = shift;
96
    
97
    # Type Names
98
    my $type_names = {};
99
    $self->each_column(sub {
100
        my ($self, $table, $column, $column_info) = @_;
101
        $type_names->{$column_info->{TYPE_NAME}} = 1
102
          if $column_info->{TYPE_NAME};
103
    });
104
    my @output = sort keys %$type_names;
105
    unshift @output, "Type Name";
106
    return join "\n", @output;
test cleanup
Yuki Kimoto authored on 2011-08-10
107
}
108

            
added helper method
yuki-kimoto authored on 2010-10-17
109
our $AUTOLOAD;
110
sub AUTOLOAD {
111
    my $self = shift;
112

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

            
cleanup
Yuki Kimoto authored on 2011-04-02
116
    # Call method
renamed helper to method.
Yuki Kimoto authored on 2011-01-25
117
    $self->{_methods} ||= {};
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
118
    if (my $method = $self->{_methods}->{$mname}) {
119
        return $self->$method(@_)
120
    }
- removed EXPERIMENTAL Prefo...
Yuki Kimoto authored on 2011-04-04
121
    elsif ($self->{dbh} && (my $dbh_method = $self->dbh->can($mname))) {
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
122
        $self->dbh->$dbh_method(@_);
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
123
    }
124
    else {
cleanup
Yuki Kimoto authored on 2011-04-25
125
        croak qq{Can't locate object method "$mname" via "$package" }
126
            . _subname;
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
127
    }
added helper method
yuki-kimoto authored on 2010-10-17
128
}
129

            
- update_param is DEPRECATED...
Yuki Kimoto authored on 2011-10-04
130
sub assign_clause {
updated pod
Yuki Kimoto authored on 2011-09-02
131
    my ($self, $param, $opts) = @_;
132
    
133
    my $wrap = $opts->{wrap} || {};
micro optimization
Yuki Kimoto authored on 2011-11-16
134
    my ($q, $p) = split //, $self->q('');
added EXPERIMENTAL assign_ta...
Yuki Kimoto authored on 2011-04-26
135
    
micro optimization
Yuki Kimoto authored on 2011-10-23
136
    # Assign clause (performance is important)
micro optimization
Yuki Kimoto authored on 2011-10-23
137
    join(
138
      ', ',
139
      map {
140
          ref $param->{$_} eq 'SCALAR' ? "$q$_$p = " . ${$param->{$_}}
141
          : $wrap->{$_} ? "$q$_$p = " . $wrap->{$_}->(":$_")
142
          : "$q$_$p = :$_";
143
      } sort keys %$param
144
    );
added EXPERIMENTAL assign_ta...
Yuki Kimoto authored on 2011-04-26
145
}
146

            
cleanup
Yuki Kimoto authored on 2011-03-21
147
sub column {
- DBIx::Custom Model filter ...
Yuki Kimoto authored on 2011-06-15
148
    my $self = shift;
149
    my $option = pop if ref $_[-1] eq 'HASH';
150
    my $real_table = shift;
151
    my $columns = shift;
152
    my $table = $option->{alias} || $real_table;
153
    
154
    # Columns
added EXPERIMENTAL DBIx::Cus...
Yuki Kimoto authored on 2011-10-26
155
    unless (defined $columns) {
- DBIx::Custom Model filter ...
Yuki Kimoto authored on 2011-06-15
156
        $columns ||= $self->model($real_table)->columns;
157
    }
added helper method
yuki-kimoto authored on 2010-10-17
158
    
EXPERIMTANL column method th...
Yuki Kimoto authored on 2011-06-13
159
    # Separator
160
    my $separator = $self->separator;
161
    
cleanup
Yuki Kimoto authored on 2011-04-02
162
    # Column clause
cleanup
Yuki Kimoto authored on 2011-03-21
163
    my @column;
cleanup
Yuki Kimoto authored on 2011-04-02
164
    $columns ||= [];
added EXPERIMENTAL q method
Yuki Kimoto authored on 2011-10-27
165
    push @column, $self->q($table) . "." . $self->q($_) .
166
      " as " . $self->q("${table}${separator}$_")
EXPERIMTANL column method th...
Yuki Kimoto authored on 2011-06-13
167
      for @$columns;
cleanup
Yuki Kimoto authored on 2011-03-21
168
    
169
    return join (', ', @column);
added helper method
yuki-kimoto authored on 2010-10-17
170
}
171

            
packaging one directory
yuki-kimoto authored on 2009-11-16
172
sub connect {
cleanup
Yuki Kimoto authored on 2011-08-16
173
    my $self = ref $_[0] ? shift : shift->new(@_);
174
    
175
    my $connector = $self->connector;
176
    
177
    if (!ref $connector && $connector) {
178
        require DBIx::Connector;
179
        
180
        my $dsn = $self->dsn;
181
        my $user = $self->user;
182
        my $password = $self->password;
- dbi_option attribute is re...
Yuki Kimoto authored on 2011-10-05
183
        my $option = $self->_option;
cleanup
Yuki Kimoto authored on 2011-08-16
184
        my $connector = DBIx::Connector->new($dsn, $user, $password,
- dbi_option attribute is re...
Yuki Kimoto authored on 2011-10-05
185
          {%{$self->default_option} , %$option});
cleanup
Yuki Kimoto authored on 2011-08-16
186
        $self->connector($connector);
187
    }
removed register_format()
yuki-kimoto authored on 2010-05-26
188
    
- removed EXPERIMENTAL Prefo...
Yuki Kimoto authored on 2011-04-04
189
    # Connect
190
    $self->dbh;
update document
yuki-kimoto authored on 2010-01-30
191
    
packaging one directory
yuki-kimoto authored on 2009-11-16
192
    return $self;
193
}
194

            
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-08-20
195
sub count { shift->select(column => 'count(*)', @_)->fetch_first->[0] }
196

            
update pod
Yuki Kimoto authored on 2011-03-13
197
sub dbh {
198
    my $self = shift;
cleanup
Yuki Kimoto authored on 2011-04-02
199
    
fixed dbh() method bug:wq
Yuki Kimoto authored on 2011-04-05
200
    # Set
201
    if (@_) {
202
        $self->{dbh} = $_[0];
203
        
204
        return $self;
205
    }
206
    
207
    # Get
208
    else {
209
        # From Connction manager
210
        if (my $connector = $self->connector) {
cleanup
Yuki Kimoto authored on 2011-04-25
211
            croak "connector must have dbh() method " . _subname
fixed dbh() method bug:wq
Yuki Kimoto authored on 2011-04-05
212
              unless ref $connector && $connector->can('dbh');
213
              
set reserved_word_quote auto...
Yuki Kimoto authored on 2011-06-08
214
            $self->{dbh} = $connector->dbh;
fixed dbh() method bug:wq
Yuki Kimoto authored on 2011-04-05
215
        }
216
        
set reserved_word_quote auto...
Yuki Kimoto authored on 2011-06-08
217
        # Connect
218
        $self->{dbh} ||= $self->_connect;
219
        
220
        # Quote
reserved_word_quote is DEPRE...
Yuki Kimoto authored on 2011-06-17
221
        if (!defined $self->reserved_word_quote && !defined $self->quote) {
prepare oracle test
Yuki Kimoto authored on 2011-08-15
222
            my $driver = $self->_driver;
added EXPERIMENTAL find_tabl...
Yuki Kimoto authored on 2011-08-16
223
            my $quote =  $driver eq 'odbc' ? '[]'
224
                       : $driver eq 'ado' ? '[]'
225
                       : $driver eq 'mysql' ? '`'
fixex [] reserved_word_quote...
Yuki Kimoto authored on 2011-08-14
226
                       : '"';
reserved_word_quote is DEPRE...
Yuki Kimoto authored on 2011-06-17
227
            $self->quote($quote);
set reserved_word_quote auto...
Yuki Kimoto authored on 2011-06-08
228
        }
reserved_word_quote is DEPRE...
Yuki Kimoto authored on 2011-06-17
229
        
set reserved_word_quote auto...
Yuki Kimoto authored on 2011-06-08
230
        return $self->{dbh};
update pod
Yuki Kimoto authored on 2011-03-13
231
    }
232
}
233

            
cleanup
Yuki Kimoto authored on 2011-10-21
234
sub delete {
235
    my ($self, %opt) = @_;
236
    warn "delete method where_param option is DEPRECATED!"
237
      if $opt{where_param};
238
    
cleanup
Yuki Kimoto authored on 2011-10-21
239
    # Don't allow delete all rows
cleanup
Yuki Kimoto authored on 2011-10-21
240
    croak qq{delete method where or id option must be specified } . _subname
241
      if !$opt{where} && !defined $opt{id} && !$opt{allow_delete_all};
242
    
243
    # Where
cleanup
Yuki Kimoto authored on 2011-10-25
244
    my $w = $self->_where_clause_and_param($opt{where}, $opt{where_param},
cleanup
Yuki Kimoto authored on 2011-10-25
245
      delete $opt{id}, $opt{primary_key}, $opt{table});
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
246

            
cleanup
Yuki Kimoto authored on 2011-04-02
247
    # Delete statement
cleanup
Yuki Kimoto authored on 2011-10-21
248
    my $sql = "delete ";
cleanup
Yuki Kimoto authored on 2011-10-21
249
    $sql .= "$opt{prefix} " if defined $opt{prefix};
added EXPERIMENTAL q method
Yuki Kimoto authored on 2011-10-27
250
    $sql .= "from " . $self->q($opt{table}) . " $w->{clause} ";
packaging one directory
yuki-kimoto authored on 2009-11-16
251
    
252
    # Execute query
- insert method id value is ...
Yuki Kimoto authored on 2011-10-25
253
    $opt{statement} = 'delete';
cleanup
Yuki Kimoto authored on 2011-10-25
254
    $self->execute($sql, $w->{param}, %opt);
packaging one directory
yuki-kimoto authored on 2009-11-16
255
}
256

            
cleanup
Yuki Kimoto authored on 2011-11-01
257
sub delete_all { shift->delete(@_, allow_delete_all => 1) }
packaging one directory
yuki-kimoto authored on 2009-11-16
258

            
added memory leak check test
Yuki Kimoto authored on 2011-08-15
259
sub DESTROY {}
added helper method
yuki-kimoto authored on 2010-10-17
260

            
removed EXPERIMETNAL flag fr...
Yuki Kimoto authored on 2011-03-25
261
sub create_model {
262
    my $self = shift;
263
    
cleanup
Yuki Kimoto authored on 2011-10-21
264
    # Options
cleanup
Yuki Kimoto authored on 2011-10-21
265
    my $opt = ref $_[0] eq 'HASH' ? $_[0] : {@_};
266
    $opt->{dbi} = $self;
267
    my $model_class = delete $opt->{model_class} || 'DBIx::Custom::Model';
268
    my $model_name  = delete $opt->{name};
269
    my $model_table = delete $opt->{table};
removed EXPERIMETNAL flag fr...
Yuki Kimoto authored on 2011-03-25
270
    $model_name ||= $model_table;
271
    
cleanup
Yuki Kimoto authored on 2011-04-02
272
    # Create model
cleanup
Yuki Kimoto authored on 2011-10-21
273
    my $model = $model_class->new($opt);
cleanup
Yuki Kimoto authored on 2011-08-13
274
    weaken $model->{dbi};
removed EXPERIMETNAL flag fr...
Yuki Kimoto authored on 2011-03-25
275
    $model->name($model_name) unless $model->name;
276
    $model->table($model_table) unless $model->table;
277
    
micro optimization
Yuki Kimoto authored on 2011-07-30
278
    # Apply filter(DEPRECATED logic)
279
    if ($model->{filter}) {
280
        my $filter = ref $model->filter eq 'HASH'
281
                   ? [%{$model->filter}]
282
                   : $model->filter;
283
        $filter ||= [];
284
        warn "DBIx::Custom::Model filter method is DEPRECATED!"
285
          if @$filter;
286
        $self->_apply_filter($model->table, @$filter);
287
    }
288
    
removed EXPERIMETNAL flag fr...
Yuki Kimoto authored on 2011-03-25
289
    # Set model
290
    $self->model($model->name, $model);
291
    
create_model() return model
Yuki Kimoto authored on 2011-03-29
292
    return $self->model($model->name);
removed EXPERIMETNAL flag fr...
Yuki Kimoto authored on 2011-03-25
293
}
294

            
295
sub each_column {
- added EXPERIMENTAL get_col...
Yuki Kimoto authored on 2011-08-16
296
    my ($self, $cb, %options) = @_;
added EXPERIMENTAL system_ta...
Yuki Kimoto authored on 2011-08-10
297

            
- added EXPERIMENTAL get_col...
Yuki Kimoto authored on 2011-08-16
298
    my $user_column_info = $self->user_column_info;
removed EXPERIMETNAL flag fr...
Yuki Kimoto authored on 2011-03-25
299
    
- added EXPERIMENTAL get_col...
Yuki Kimoto authored on 2011-08-16
300
    if ($user_column_info) {
301
        $self->$cb($_->{table}, $_->{column}, $_->{info}) for @$user_column_info;
302
    }
303
    else {
304
    
305
        my $re = $self->exclude_table || $options{exclude_table};
306
        # Tables
307
        my %tables;
308
        $self->each_table(sub { $tables{$_[1]}++ });
added SQL Server test
Yuki Kimoto authored on 2011-08-14
309

            
- added EXPERIMENTAL get_col...
Yuki Kimoto authored on 2011-08-16
310
        # Iterate all tables
311
        my @tables = sort keys %tables;
312
        for (my $i = 0; $i < @tables; $i++) {
313
            my $table = $tables[$i];
314
            
315
            # Iterate all columns
316
            my $sth_columns;
317
            eval {$sth_columns = $self->dbh->column_info(undef, undef, $table, '%')};
318
            next if $@;
319
            while (my $column_info = $sth_columns->fetchrow_hashref) {
320
                my $column = $column_info->{COLUMN_NAME};
321
                $self->$cb($table, $column, $column_info);
322
            }
removed EXPERIMETNAL flag fr...
Yuki Kimoto authored on 2011-03-25
323
        }
324
    }
325
}
326

            
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
327
sub each_table {
added EXPERIMENTAL find_tabl...
Yuki Kimoto authored on 2011-08-16
328
    my ($self, $cb, %option) = @_;
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
329
    
cleanup test
Yuki Kimoto authored on 2011-08-16
330
    my $user_table_infos = $self->user_table_info;
added EXPERIMENTAL system_ta...
Yuki Kimoto authored on 2011-08-10
331
    
added test
Yuki Kimoto authored on 2011-08-16
332
    # Iterate tables
333
    if ($user_table_infos) {
334
        $self->$cb($_->{table}, $_->{info}) for @$user_table_infos;
335
    }
336
    else {
337
        my $re = $self->exclude_table || $option{exclude};
338
        my $sth_tables = $self->dbh->table_info;
339
        while (my $table_info = $sth_tables->fetchrow_hashref) {
340
            
341
            # Table
342
            my $table = $table_info->{TABLE_NAME};
343
            next if defined $re && $table =~ /$re/;
344
            $self->$cb($table, $table_info);
345
        }
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
346
    }
347
}
348

            
cleanup
Yuki Kimoto authored on 2011-04-02
349
sub execute {
execute method can second ar...
Yuki Kimoto authored on 2011-06-09
350
    my $self = shift;
cleanup
Yuki Kimoto authored on 2011-10-20
351
    my $sql = shift;
moved DBIx::Custom::Guide to...
Yuki Kimoto authored on 2011-10-22
352

            
353
    # Options
execute method can second ar...
Yuki Kimoto authored on 2011-06-09
354
    my $param;
355
    $param = shift if @_ % 2;
cleanup
Yuki Kimoto authored on 2011-10-21
356
    my %opt = @_;
moved DBIx::Custom::Guide to...
Yuki Kimoto authored on 2011-10-22
357
    warn "sqlfilter option is DEPRECATED" if $opt{sqlfilter};
358
    $param ||= $opt{param} || {};
cleanup
Yuki Kimoto authored on 2011-10-21
359
    my $tables = $opt{table} || [];
cleanup
Yuki Kimoto authored on 2011-04-02
360
    $tables = [$tables] unless ref $tables eq 'ARRAY';
micro optimization
Yuki Kimoto authored on 2011-10-23
361
    my $filter = ref $opt{filter} eq 'ARRAY' ?
362
      _array_to_hash($opt{filter}) : $opt{filter};
refactoring delete and delet...
yuki-kimoto authored on 2010-04-28
363
    
micro optimization and
Yuki Kimoto authored on 2011-10-25
364
    # Merge second parameter
365
    my @cleanup;
added EXPERIMENTAL insert cr...
Yuki Kimoto authored on 2011-10-25
366
    my $saved_param;
micro optimization and
Yuki Kimoto authored on 2011-10-25
367
    if (ref $param eq 'ARRAY') {
368
        my $param2 = $param->[1];
369
        $param = $param->[0];
370
        for my $column (keys %$param2) {
371
            if (!exists $param->{$column}) {
372
                $param->{$column} = $param2->{$column};
373
                push @cleanup, $column;
374
            }
375
            else {
376
                delete $param->{$_} for @cleanup;
377
                @cleanup = ();
added EXPERIMENTAL insert cr...
Yuki Kimoto authored on 2011-10-25
378
                $saved_param  = $param;
micro optimization and
Yuki Kimoto authored on 2011-10-25
379
                $param = $self->merge_param($param, $param2);
added EXPERIMENTAL insert cr...
Yuki Kimoto authored on 2011-10-25
380
                delete $saved_param->{$_} for (@{$opt{cleanup} || []});
micro optimization and
Yuki Kimoto authored on 2011-10-25
381
                last;
382
            }
383
        }
384
    }
385
    
moved DBIx::Custom::Guide to...
Yuki Kimoto authored on 2011-10-22
386
    # Append
387
    $sql .= $opt{append} if defined $opt{append} && !ref $sql;
388
    
389
    # Query
added EXPERIMENTAL reuse_que...
Yuki Kimoto authored on 2011-10-22
390
    my $query;
micro optimization and
Yuki Kimoto authored on 2011-10-25
391
    if (ref $sql) {
392
        $query = $sql;
393
        warn "execute method receiving query object as first parameter is DEPRECATED!" .
394
             "because this is very buggy.";
395
    }
added EXPERIMENTAL reuse_que...
Yuki Kimoto authored on 2011-10-22
396
    else {
397
        $query = $opt{reuse}->{$sql} if $opt{reuse};
micro optimization
Yuki Kimoto authored on 2011-11-16
398
        unless ($query) {
399
            my $safety = $self->{safety_character} || $self->safety_character;
400
            # Check unsafety keys
401
            unless ((join('', keys %$param) || '') =~ /^[$safety\.]+$/) {
402
                for my $column (keys %$param) {
403
                    croak qq{"$column" is not safety column name } . _subname
404
                      unless $column =~ /^[$safety\.]+$/;
405
                }
406
            }
407
            $query = $self->_create_query($sql,$opt{after_build_sql} || $opt{sqlfilter});
408
        }
micro optimization
Yuki Kimoto authored on 2011-11-16
409
        $query->{statement} = $opt{statement} || '';
added EXPERIMENTAL reuse_que...
Yuki Kimoto authored on 2011-10-22
410
        $opt{reuse}->{$sql} = $query if $opt{reuse};
411
    }
412
        
added EXPERIMENTAL last_sql ...
Yuki Kimoto authored on 2011-07-11
413
    # Save query
micro optimization
Yuki Kimoto authored on 2011-10-23
414
    $self->{last_sql} = $query->{sql};
added EXPERIMENTAL last_sql ...
Yuki Kimoto authored on 2011-07-11
415

            
moved DBIx::Custom::Guide to...
Yuki Kimoto authored on 2011-10-22
416
    # Return query
417
    return $query if $opt{query};
micro optimization
Yuki Kimoto authored on 2011-07-30
418
    
moved DBIx::Custom::Guide to...
Yuki Kimoto authored on 2011-10-22
419
    # Merge query filter(DEPRECATED!)
DBIx::Custom::Query filter m...
Yuki Kimoto authored on 2011-07-30
420
    $filter ||= $query->{filter} || {};
all filter can receive array...
Yuki Kimoto authored on 2011-02-25
421
    
cleanup
Yuki Kimoto authored on 2011-04-02
422
    # Tables
DBIx::Custom::Query tables a...
Yuki Kimoto authored on 2011-07-30
423
    unshift @$tables, @{$query->{tables} || []};
micro optimization
Yuki Kimoto authored on 2011-07-30
424
    my $main_table = @{$tables}[-1];
- insert method id value is ...
Yuki Kimoto authored on 2011-10-25
425

            
426
    # Merge id to parameter
moved DBIx::Custom::Guide to...
Yuki Kimoto authored on 2011-10-22
427
    if (defined $opt{id}) {
micro optimization
Yuki Kimoto authored on 2011-11-16
428
        my $statement = $query->{statement};
execute method id option is ...
Yuki Kimoto authored on 2011-10-27
429
        warn "execute method id option is DEPRECATED!" unless $statement;
- insert method id value is ...
Yuki Kimoto authored on 2011-10-25
430
        croak "execute id option must be specified with primary_key option"
431
          unless $opt{primary_key};
432
        $opt{primary_key} = [$opt{primary_key}] unless ref $opt{primary_key};
433
        $opt{id} = [$opt{id}] unless ref $opt{id};
DBIx::Custom::Query is DEPRE...
Yuki Kimoto authored on 2011-11-15
434
        for (my $i = 0; $i < @{$opt{id}}; $i++) {
- insert method id value is ...
Yuki Kimoto authored on 2011-10-25
435
           my $key = $opt{primary_key}->[$i];
436
           $key = "$main_table.$key" if $statement eq 'update' ||
437
             $statement eq 'delete' || $statement eq 'select';
438
           next if exists $param->{$key};
439
           $param->{$key} = $opt{id}->[$i];
micro optimization and
Yuki Kimoto authored on 2011-10-25
440
           push @cleanup, $key;1
- insert method id value is ...
Yuki Kimoto authored on 2011-10-25
441
        }
fixed id option bug when col...
Yuki Kimoto authored on 2011-10-10
442
    }
micro optimization
Yuki Kimoto authored on 2011-07-30
443
    
moved DBIx::Custom::Guide to...
Yuki Kimoto authored on 2011-10-22
444
    # Cleanup tables(DEPRECATED!)
micro optimization
Yuki Kimoto authored on 2011-07-30
445
    $tables = $self->_remove_duplicate_table($tables, $main_table)
446
      if @$tables > 1;
cleanup
Yuki Kimoto authored on 2011-04-02
447
    
added type_rule into logic
Yuki Kimoto authored on 2011-06-09
448
    # Type rule
EXPERIMENTAL type_rule argum...
Yuki Kimoto authored on 2011-06-17
449
    my $type_filters = {};
micro optimization
Yuki Kimoto authored on 2011-10-23
450
    if ($self->{_type_rule_is_called}) {
451
        unless ($opt{type_rule_off}) {
452
            my $type_rule_off_parts = {
453
                1 => $opt{type_rule1_off},
454
                2 => $opt{type_rule2_off}
455
            };
456
            for my $i (1, 2) {
457
                unless ($type_rule_off_parts->{$i}) {
458
                    $type_filters->{$i} = {};
459
                    my $table_alias = $opt{table_alias} || {};
460
                    for my $alias (keys %$table_alias) {
461
                        my $table = $table_alias->{$alias};
462
                        
463
                        for my $column (keys %{$self->{"_into$i"}{key}{$table} || {}}) {
464
                            $type_filters->{$i}->{"$alias.$column"} = $self->{"_into$i"}{key}{$table}{$column};
465
                        }
EXPERIMENTAL type_rule argum...
Yuki Kimoto authored on 2011-06-17
466
                    }
micro optimization
Yuki Kimoto authored on 2011-10-23
467
                    $type_filters->{$i} = {%{$type_filters->{$i}}, %{$self->{"_into$i"}{key}{$main_table} || {}}}
468
                      if $main_table;
EXPERIMENTAL type_rule argum...
Yuki Kimoto authored on 2011-06-17
469
                }
added EXPERIMENTAL execute()...
Yuki Kimoto authored on 2011-06-09
470
            }
added type_rule into logic
Yuki Kimoto authored on 2011-06-09
471
        }
472
    }
cleanup
Yuki Kimoto authored on 2011-04-02
473
    
moved DBIx::Custom::Guide to...
Yuki Kimoto authored on 2011-10-22
474
    # Applied filter(DEPRECATED!)
micro optimization
Yuki Kimoto authored on 2011-07-30
475
    if ($self->{filter}{on}) {
476
        my $applied_filter = {};
cleanup
Yuki Kimoto authored on 2011-10-21
477
        for my $table (@$tables) {
micro optimization
Yuki Kimoto authored on 2011-07-30
478
            $applied_filter = {
479
                %$applied_filter,
480
                %{$self->{filter}{out}->{$table} || {}}
481
            }
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
482
        }
micro optimization
Yuki Kimoto authored on 2011-07-30
483
        $filter = {%$applied_filter, %$filter};
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
484
    }
485
    
cleanup
Yuki Kimoto authored on 2011-04-02
486
    # Replace filter name to code
cleanup
Yuki Kimoto authored on 2011-10-21
487
    for my $column (keys %$filter) {
cleanup
Yuki Kimoto authored on 2011-04-02
488
        my $name = $filter->{$column};
489
        if (!defined $name) {
490
            $filter->{$column} = undef;
renamed auto_filter to apply...
Yuki Kimoto authored on 2011-01-12
491
        }
cleanup
Yuki Kimoto authored on 2011-04-02
492
        elsif (ref $name ne 'CODE') {
cleanup
Yuki Kimoto authored on 2011-04-25
493
          croak qq{Filter "$name" is not registered" } . _subname
cleanup
Yuki Kimoto authored on 2011-04-02
494
            unless exists $self->filters->{$name};
495
          $filter->{$column} = $self->filters->{$name};
cleanup
Yuki Kimoto authored on 2010-12-21
496
        }
497
    }
packaging one directory
yuki-kimoto authored on 2009-11-16
498
    
cleanup
Yuki Kimoto authored on 2011-04-02
499
    # Create bind values
micro optimization
Yuki Kimoto authored on 2011-11-16
500
    my ($bind, $bind_types) = $self->_create_bind_values($param, $query->{columns},
micro optimization
Yuki Kimoto authored on 2011-10-23
501
      $filter, $type_filters, $opt{bind_type} || $opt{type} || {});
added EXPERIMENTAL execute m...
Yuki Kimoto authored on 2011-08-14
502

            
cleanup
yuki-kimoto authored on 2010-10-17
503
    # Execute
micro optimization
Yuki Kimoto authored on 2011-10-23
504
    my $sth = $query->{sth};
cleanup
yuki-kimoto authored on 2010-10-17
505
    my $affected;
cleanup
Yuki Kimoto authored on 2011-03-21
506
    eval {
micro optimization
Yuki Kimoto authored on 2011-10-23
507
        if ($opt{bind_type} || $opt{type}) {
508
            $sth->bind_param($_ + 1, $bind->[$_],
509
                $bind_types->[$_] ? $bind_types->[$_] : ())
510
              for (0 .. @$bind - 1);
511
            $affected = $sth->execute;
512
        }
513
        else {
514
            $affected = $sth->execute(@$bind);
515
        }
cleanup
Yuki Kimoto authored on 2011-03-21
516
    };
improved error messages
Yuki Kimoto authored on 2011-04-18
517
    
micro optimization
Yuki Kimoto authored on 2011-07-30
518
    $self->_croak($@, qq{. Following SQL is executed.\n}
519
      . qq{$query->{sql}\n} . _subname) if $@;
- insert method id value is ...
Yuki Kimoto authored on 2011-10-25
520

            
521
    # Remove id from parameter
added EXPERIMENTAL insert cr...
Yuki Kimoto authored on 2011-10-25
522
    delete $param->{$_} for (@cleanup, @{$opt{cleanup} || []});
cleanup
yuki-kimoto authored on 2010-10-17
523
    
improved debug message
Yuki Kimoto authored on 2011-05-23
524
    # DEBUG message
fixed DEBUG messsage bug
Yuki Kimoto authored on 2011-10-24
525
    if ($ENV{DBIX_CUSTOM_DEBUG}) {
micro optimization
Yuki Kimoto authored on 2011-11-16
526
        warn "SQL:\n" . $query->{sql} . "\n";
improved debug message
Yuki Kimoto authored on 2011-05-23
527
        my @output;
fixed DEBUG messsage bug
Yuki Kimoto authored on 2011-10-24
528
        for my $value (@$bind) {
improved debug message
Yuki Kimoto authored on 2011-05-23
529
            $value = 'undef' unless defined $value;
fixed DEBUG messsage bug
Yuki Kimoto authored on 2011-10-24
530
            $value = encode($ENV{DBIX_CUSTOM_DEBUG_ENCODING} || 'UTF-8', $value)
improved debug message
Yuki Kimoto authored on 2011-05-23
531
              if utf8::is_utf8($value);
532
            push @output, $value;
533
        }
fixed DEBUG messsage bug
Yuki Kimoto authored on 2011-10-24
534
        warn "Bind values: " . join(', ', @output) . "\n\n";
improved debug message
Yuki Kimoto authored on 2011-05-23
535
    }
added environment variable D...
Yuki Kimoto authored on 2011-04-02
536
    
micro optimization
Yuki Kimoto authored on 2011-10-23
537
    # Not select statement
538
    return $affected unless $sth->{NUM_OF_FIELDS};
539

            
540
    # Filter(DEPRECATED!)
541
    my $infilter = {};
542
    if ($self->{filter}{on}) {
543
        $infilter->{in}  = {};
544
        $infilter->{end} = {};
545
        push @$tables, $main_table if $main_table;
546
        for my $table (@$tables) {
547
            for my $way (qw/in end/) {
548
                $infilter->{$way} = {%{$infilter->{$way}},
549
                  %{$self->{filter}{$way}{$table} || {}}};
cleanup
Yuki Kimoto authored on 2011-04-02
550
            }
cleanup
Yuki Kimoto authored on 2011-01-12
551
        }
cleanup
yuki-kimoto authored on 2010-10-17
552
    }
micro optimization
Yuki Kimoto authored on 2011-10-23
553
    
554
    # Result
micro optimization
Yuki Kimoto authored on 2011-11-16
555
    $self->result_class->new(
micro optimization
Yuki Kimoto authored on 2011-10-23
556
        sth => $sth,
557
        dbi => $self,
558
        default_filter => $self->{default_in_filter},
559
        filter => $infilter->{in} || {},
560
        end_filter => $infilter->{end} || {},
561
        type_rule => {
562
            from1 => $self->type_rule->{from1},
563
            from2 => $self->type_rule->{from2}
564
        },
565
    );
cleanup
yuki-kimoto authored on 2010-10-17
566
}
567

            
added test
Yuki Kimoto authored on 2011-08-16
568
sub get_table_info {
cleanup
Yuki Kimoto authored on 2011-10-21
569
    my ($self, %opt) = @_;
added EXPERIMENTAL find_tabl...
Yuki Kimoto authored on 2011-08-16
570
    
cleanup
Yuki Kimoto authored on 2011-10-21
571
    my $exclude = delete $opt{exclude};
572
    croak qq/"$_" is wrong option/ for keys %opt;
added EXPERIMENTAL find_tabl...
Yuki Kimoto authored on 2011-08-16
573
    
added test
Yuki Kimoto authored on 2011-08-16
574
    my $table_info = [];
575
    $self->each_table(
576
        sub { push @$table_info, {table => $_[1], info => $_[2] } },
577
        exclude => $exclude
578
    );
added EXPERIMENTAL find_tabl...
Yuki Kimoto authored on 2011-08-16
579
    
cleanup test
Yuki Kimoto authored on 2011-08-16
580
    return [sort {$a->{table} cmp $b->{table} } @$table_info];
added EXPERIMENTAL find_tabl...
Yuki Kimoto authored on 2011-08-16
581
}
582

            
- added EXPERIMENTAL get_col...
Yuki Kimoto authored on 2011-08-16
583
sub get_column_info {
cleanup
Yuki Kimoto authored on 2011-10-21
584
    my ($self, %opt) = @_;
- added EXPERIMENTAL get_col...
Yuki Kimoto authored on 2011-08-16
585
    
cleanup
Yuki Kimoto authored on 2011-10-21
586
    my $exclude_table = delete $opt{exclude_table};
587
    croak qq/"$_" is wrong option/ for keys %opt;
- added EXPERIMENTAL get_col...
Yuki Kimoto authored on 2011-08-16
588
    
589
    my $column_info = [];
590
    $self->each_column(
591
        sub { push @$column_info, {table => $_[1], column => $_[2], info => $_[3] } },
592
        exclude_table => $exclude_table
593
    );
594
    
595
    return [
596
      sort {$a->{table} cmp $b->{table} || $a->{column} cmp $b->{column} }
cleanup
Yuki Kimoto authored on 2011-08-16
597
        @$column_info];
- added EXPERIMENTAL get_col...
Yuki Kimoto authored on 2011-08-16
598
}
599

            
- method method of DBIx::Cus...
Yuki Kimoto authored on 2011-10-10
600
sub helper {
601
    my $self = shift;
602
    
603
    # Register method
604
    my $methods = ref $_[0] eq 'HASH' ? $_[0] : {@_};
605
    $self->{_methods} = {%{$self->{_methods} || {}}, %$methods};
606
    
607
    return $self;
608
}
609

            
cleanup
yuki-kimoto authored on 2010-10-17
610
sub insert {
- insert, insert_at, update,...
Yuki Kimoto authored on 2011-06-08
611
    my $self = shift;
added EXPERIMENTAL reserved_...
Yuki Kimoto authored on 2011-03-30
612
    
cleanup
Yuki Kimoto authored on 2011-10-21
613
    # Options
cleanup
Yuki Kimoto authored on 2011-10-21
614
    my $param = @_ % 2 ? shift : undef;
cleanup
Yuki Kimoto authored on 2011-10-21
615
    my %opt = @_;
micro optimization
Yuki Kimoto authored on 2011-10-23
616
    warn "insert method param option is DEPRECATED!" if $opt{param};
cleanup
Yuki Kimoto authored on 2011-10-21
617
    $param ||= delete $opt{param} || {};
- added EXPERIMENTAL timesta...
Yuki Kimoto authored on 2011-09-02
618
    
added EXPERIMENTAL insert cr...
Yuki Kimoto authored on 2011-10-25
619
    # Timestamp(DEPRECATED!)
cleanup
Yuki Kimoto authored on 2011-10-21
620
    if ($opt{timestamp} && (my $insert_timestamp = $self->insert_timestamp)) {
- insert timestamp option is...
Yuki Kimoto authored on 2011-10-25
621
        warn "insert timestamp option is DEPRECATED! use created_at with now attribute";
- added EXPERIMENTAL update_...
Yuki Kimoto authored on 2011-09-12
622
        my $columns = $insert_timestamp->[0];
623
        $columns = [$columns] unless ref $columns eq 'ARRAY';
624
        my $value = $insert_timestamp->[1];
625
        $value = $value->() if ref $value eq 'CODE';
626
        $param->{$_} = $value for @$columns;
- added EXPERIMENTAL timesta...
Yuki Kimoto authored on 2011-09-02
627
    }
added EXPERIMENTAL insert cr...
Yuki Kimoto authored on 2011-10-25
628

            
629
    # Created time and updated time
630
    my @timestamp_cleanup;
631
    if (defined $opt{created_at} || defined $opt{updated_at}) {
- insert method created_at a...
Yuki Kimoto authored on 2011-10-27
632
        my $now = $self->now;
633
        $now = $now->() if ref $now eq 'CODE';
added EXPERIMENTAL insert cr...
Yuki Kimoto authored on 2011-10-25
634
        if (defined $opt{created_at}) {
635
            $param->{$opt{created_at}} = $now;
636
            push @timestamp_cleanup, $opt{created_at};
637
        }
638
        if (defined $opt{updated_at}) {
639
            $param->{$opt{updated_at}} = $now;
640
            push @timestamp_cleanup, $opt{updated_at};
641
        }
642
    }
cleanup
Yuki Kimoto authored on 2011-10-21
643
    
644
    # Merge id to parameter
- insert method id value is ...
Yuki Kimoto authored on 2011-10-25
645
    my @cleanup;
micro optimization and
Yuki Kimoto authored on 2011-10-25
646
    my $id_param = {};
micro optimization
Yuki Kimoto authored on 2011-10-23
647
    if (defined $opt{id}) {
- insert method id value is ...
Yuki Kimoto authored on 2011-10-25
648
        croak "insert id option must be specified with primary_key option"
micro optimization
Yuki Kimoto authored on 2011-10-23
649
          unless $opt{primary_key};
650
        $opt{primary_key} = [$opt{primary_key}] unless ref $opt{primary_key};
651
        $opt{id} = [$opt{id}] unless ref $opt{id};
652
        for (my $i = 0; $i < @{$opt{primary_key}}; $i++) {
653
           my $key = $opt{primary_key}->[$i];
- insert method id value is ...
Yuki Kimoto authored on 2011-10-25
654
           next if exists $param->{$key};
micro optimization
Yuki Kimoto authored on 2011-10-23
655
           $param->{$key} = $opt{id}->[$i];
- insert method id value is ...
Yuki Kimoto authored on 2011-10-25
656
           push @cleanup, $key;
micro optimization
Yuki Kimoto authored on 2011-10-23
657
        }
658
    }
cleanup
Yuki Kimoto authored on 2011-10-21
659
    
cleanup
Yuki Kimoto authored on 2011-04-02
660
    # Insert statement
cleanup
Yuki Kimoto authored on 2011-10-21
661
    my $sql = "insert ";
cleanup
Yuki Kimoto authored on 2011-10-21
662
    $sql .= "$opt{prefix} " if defined $opt{prefix};
added EXPERIMENTAL q method
Yuki Kimoto authored on 2011-10-27
663
    $sql .= "into " . $self->q($opt{table}) . " "
cleanup
Yuki Kimoto authored on 2011-10-21
664
      . $self->values_clause($param, {wrap => $opt{wrap}}) . " ";
micro optimization
Yuki Kimoto authored on 2011-10-23
665

            
666
    # Remove id from parameter
- insert method id value is ...
Yuki Kimoto authored on 2011-10-25
667
    delete $param->{$_} for @cleanup;
packaging one directory
yuki-kimoto authored on 2009-11-16
668
    
669
    # Execute query
micro optimization
Yuki Kimoto authored on 2011-10-23
670
    $opt{statement} = 'insert';
added EXPERIMENTAL insert cr...
Yuki Kimoto authored on 2011-10-25
671
    $opt{cleanup} = \@timestamp_cleanup;
micro optimization
Yuki Kimoto authored on 2011-10-23
672
    $self->execute($sql, $param, %opt);
packaging one directory
yuki-kimoto authored on 2009-11-16
673
}
674

            
- added EXPERIMENTAL update_...
Yuki Kimoto authored on 2011-09-12
675
sub insert_timestamp {
676
    my $self = shift;
677
    
- insert timestamp option is...
Yuki Kimoto authored on 2011-10-25
678
    warn "insert_timestamp method is DEPRECATED! use now attribute";
679
    
- added EXPERIMENTAL update_...
Yuki Kimoto authored on 2011-09-12
680
    if (@_) {
681
        $self->{insert_timestamp} = [@_];
682
        
683
        return $self;
684
    }
685
    return $self->{insert_timestamp};
686
}
687

            
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
688
sub include_model {
689
    my ($self, $name_space, $model_infos) = @_;
690
    
cleanup
Yuki Kimoto authored on 2011-04-02
691
    # Name space
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
692
    $name_space ||= '';
cleanup
Yuki Kimoto authored on 2011-04-02
693
    
694
    # Get Model infomations
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
695
    unless ($model_infos) {
cleanup
Yuki Kimoto authored on 2011-04-02
696

            
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
697
        # Load name space module
cleanup
Yuki Kimoto authored on 2011-04-25
698
        croak qq{"$name_space" is invalid class name } . _subname
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
699
          if $name_space =~ /[^\w:]/;
700
        eval "use $name_space";
cleanup
Yuki Kimoto authored on 2011-04-25
701
        croak qq{Name space module "$name_space.pm" is needed. $@ }
702
            . _subname
improved error messages
Yuki Kimoto authored on 2011-04-18
703
          if $@;
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
704
        
705
        # Search model modules
706
        my $path = $INC{"$name_space.pm"};
707
        $path =~ s/\.pm$//;
708
        opendir my $dh, $path
cleanup
Yuki Kimoto authored on 2011-04-25
709
          or croak qq{Can't open directory "$path": $! } . _subname
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
710
        $model_infos = [];
711
        while (my $module = readdir $dh) {
712
            push @$model_infos, $module
713
              if $module =~ s/\.pm$//;
714
        }
715
        close $dh;
716
    }
717
    
cleanup
Yuki Kimoto authored on 2011-04-02
718
    # Include models
cleanup
Yuki Kimoto authored on 2011-10-21
719
    for my $model_info (@$model_infos) {
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
720
        
cleanup
Yuki Kimoto authored on 2011-04-02
721
        # Load model
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
722
        my $model_class;
723
        my $model_name;
724
        my $model_table;
725
        if (ref $model_info eq 'HASH') {
726
            $model_class = $model_info->{class};
727
            $model_name  = $model_info->{name};
728
            $model_table = $model_info->{table};
729
            
730
            $model_name  ||= $model_class;
731
            $model_table ||= $model_name;
732
        }
removed EXPERIMETNAL flag fr...
Yuki Kimoto authored on 2011-03-25
733
        else { $model_class = $model_name = $model_table = $model_info }
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
734
        my $mclass = "${name_space}::$model_class";
cleanup
Yuki Kimoto authored on 2011-04-25
735
        croak qq{"$mclass" is invalid class name } . _subname
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
736
          if $mclass =~ /[^\w:]/;
737
        unless ($mclass->can('isa')) {
738
            eval "use $mclass";
cleanup
Yuki Kimoto authored on 2011-04-25
739
            croak "$@ " . _subname if $@;
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
740
        }
741
        
cleanup
Yuki Kimoto authored on 2011-04-02
742
        # Create model
cleanup
Yuki Kimoto authored on 2011-10-21
743
        my $opt = {};
744
        $opt->{model_class} = $mclass if $mclass;
745
        $opt->{name}        = $model_name if $model_name;
746
        $opt->{table}       = $model_table if $model_table;
747
        $self->create_model($opt);
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
748
    }
749
    
750
    return $self;
751
}
752

            
added EXPERIMENTAL like_valu...
Yuki Kimoto authored on 2011-09-16
753
sub like_value { sub { "%$_[0]%" } }
754

            
added DBIx::Custom::Mapper
Yuki Kimoto authored on 2011-08-26
755
sub mapper {
756
    my $self = shift;
757
    return DBIx::Custom::Mapper->new(@_);
758
}
759

            
added EXPERIMENTAL updat_par...
Yuki Kimoto authored on 2011-03-30
760
sub merge_param {
761
    my ($self, @params) = @_;
762
    
cleanup
Yuki Kimoto authored on 2011-04-02
763
    # Merge parameters
fixed merge_param bug
Yuki Kimoto authored on 2011-05-23
764
    my $merge = {};
cleanup
Yuki Kimoto authored on 2011-10-21
765
    for my $param (@params) {
766
        for my $column (keys %$param) {
fixed merge_param bug
Yuki Kimoto authored on 2011-05-23
767
            my $param_is_array = ref $param->{$column} eq 'ARRAY' ? 1 : 0;
768
            
769
            if (exists $merge->{$column}) {
770
                $merge->{$column} = [$merge->{$column}]
771
                  unless ref $merge->{$column} eq 'ARRAY';
772
                push @{$merge->{$column}},
773
                  ref $param->{$column} ? @{$param->{$column}} : $param->{$column};
added EXPERIMENTAL updat_par...
Yuki Kimoto authored on 2011-03-30
774
            }
775
            else {
fixed merge_param bug
Yuki Kimoto authored on 2011-05-23
776
                $merge->{$column} = $param->{$column};
added EXPERIMENTAL updat_par...
Yuki Kimoto authored on 2011-03-30
777
            }
778
        }
779
    }
780
    
fixed merge_param bug
Yuki Kimoto authored on 2011-05-23
781
    return $merge;
added EXPERIMENTAL updat_par...
Yuki Kimoto authored on 2011-03-30
782
}
783

            
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
784
sub model {
785
    my ($self, $name, $model) = @_;
786
    
cleanup
Yuki Kimoto authored on 2011-04-02
787
    # Set model
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
788
    if ($model) {
789
        $self->models->{$name} = $model;
790
        return $self;
791
    }
792
    
793
    # Check model existance
cleanup
Yuki Kimoto authored on 2011-04-25
794
    croak qq{Model "$name" is not included } . _subname
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
795
      unless $self->models->{$name};
796
    
cleanup
Yuki Kimoto authored on 2011-04-02
797
    # Get model
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
798
    return $self->models->{$name};
799
}
800

            
cleanup
Yuki Kimoto authored on 2011-03-21
801
sub mycolumn {
802
    my ($self, $table, $columns) = @_;
803
    
cleanup
Yuki Kimoto authored on 2011-04-02
804
    # Create column clause
805
    my @column;
cleanup
Yuki Kimoto authored on 2011-03-21
806
    $columns ||= [];
added EXPERIMENTAL q method
Yuki Kimoto authored on 2011-10-27
807
    push @column, $self->q($table) . "." . $self->q($_) .
808
      " as " . $self->q($_)
added quote method's two cha...
Yuki Kimoto authored on 2011-07-29
809
      for @$columns;
cleanup
Yuki Kimoto authored on 2011-03-21
810
    
811
    return join (', ', @column);
812
}
813

            
added dbi_options attribute
kimoto authored on 2010-12-20
814
sub new {
815
    my $self = shift->SUPER::new(@_);
816
    
cleanup
Yuki Kimoto authored on 2011-04-02
817
    # Check attributes
added dbi_options attribute
kimoto authored on 2010-12-20
818
    my @attrs = keys %$self;
cleanup
Yuki Kimoto authored on 2011-10-21
819
    for my $attr (@attrs) {
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-08-20
820
        croak qq{Invalid attribute: "$attr" } . _subname
added dbi_options attribute
kimoto authored on 2010-12-20
821
          unless $self->can($attr);
822
    }
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
823

            
added EXPERIMENTAL system_ta...
Yuki Kimoto authored on 2011-08-10
824
    # DEPRECATED
cleanup
Yuki Kimoto authored on 2011-08-13
825
    $self->{_tags} = {
added EXPERIMENTAL system_ta...
Yuki Kimoto authored on 2011-08-10
826
        '?'     => \&DBIx::Custom::Tag::placeholder,
827
        '='     => \&DBIx::Custom::Tag::equal,
828
        '<>'    => \&DBIx::Custom::Tag::not_equal,
829
        '>'     => \&DBIx::Custom::Tag::greater_than,
830
        '<'     => \&DBIx::Custom::Tag::lower_than,
831
        '>='    => \&DBIx::Custom::Tag::greater_than_equal,
832
        '<='    => \&DBIx::Custom::Tag::lower_than_equal,
833
        'like'  => \&DBIx::Custom::Tag::like,
834
        'in'    => \&DBIx::Custom::Tag::in,
835
        'insert_param' => \&DBIx::Custom::Tag::insert_param,
836
        'update_param' => \&DBIx::Custom::Tag::update_param
cleanup
Yuki Kimoto authored on 2011-08-13
837
    };
838
    
- DBIx::Custom::QueryBuilder...
Yuki Kimoto authored on 2011-11-04
839
    # DEPRECATED!
840
    $self->{tag_parse} = 1;
841
    
cleanup
Yuki Kimoto authored on 2011-08-13
842
    return $self;
843
}
844

            
- added EXPERIMENTAL pass at...
Yuki Kimoto authored on 2011-09-02
845
sub not_exists { DBIx::Custom::NotExists->singleton }
cleanup
Yuki Kimoto authored on 2011-08-13
846

            
847
sub order {
848
    my $self = shift;
849
    return DBIx::Custom::Order->new(dbi => $self, @_);
added EXPERIMENTAL system_ta...
Yuki Kimoto authored on 2011-08-10
850
}
851

            
added EXPERIMENTAL q method
Yuki Kimoto authored on 2011-10-27
852
sub q {
853
    my ($self, $value, $quotemeta) = @_;
854
    
855
    my $quote = $self->{reserved_word_quote}
856
      || $self->{quote} || $self->quote || '';
857
    return "$quote$value$quote"
858
      if !$quotemeta && ($quote eq '`' || $quote eq '"');
859
    
860
    my $q = substr($quote, 0, 1) || '';
861
    my $p;
862
    if (defined $quote && length $quote > 1) {
863
        $p = substr($quote, 1, 1);
864
    }
865
    else { $p = $q }
866
    
867
    if ($quotemeta) {
868
        $q = quotemeta($q);
869
        $p = quotemeta($p);
870
    }
871
    
872
    return "$q$value$p";
873
}
874

            
cleanup
yuki-kimoto authored on 2010-10-17
875
sub register_filter {
cleanup
Yuki Kimoto authored on 2011-04-02
876
    my $self = shift;
cleanup
yuki-kimoto authored on 2010-10-17
877
    
878
    # Register filter
879
    my $filters = ref $_[0] eq 'HASH' ? $_[0] : {@_};
cleanup
Yuki Kimoto authored on 2011-04-02
880
    $self->filters({%{$self->filters}, %$filters});
cleanup
yuki-kimoto authored on 2010-10-17
881
    
cleanup
Yuki Kimoto authored on 2011-04-02
882
    return $self;
cleanup
yuki-kimoto authored on 2010-10-17
883
}
packaging one directory
yuki-kimoto authored on 2009-11-16
884

            
885
sub select {
cleanup
Yuki Kimoto authored on 2011-10-21
886
    my ($self, %opt) = @_;
added EXPERIMENTAL reserved_...
Yuki Kimoto authored on 2011-03-30
887

            
cleanup
Yuki Kimoto authored on 2011-10-21
888
    # Options
cleanup
Yuki Kimoto authored on 2011-10-21
889
    my $tables = ref $opt{table} eq 'ARRAY' ? $opt{table}
890
               : defined $opt{table} ? [$opt{table}]
added table not specified ex...
Yuki Kimoto authored on 2011-01-21
891
               : [];
cleanup
Yuki Kimoto authored on 2011-10-21
892
    $opt{table} = $tables;
cleanup
Yuki Kimoto authored on 2011-10-21
893
    my $where_param = $opt{where_param} || delete $opt{param} || {};
select method where_param op...
Yuki Kimoto authored on 2011-10-25
894
    warn "select method where_param option is DEPRECATED!"
895
      if $opt{where_param};
select_at is DEPRECATED! use...
Yuki Kimoto authored on 2011-06-08
896
    
cleanup
Yuki Kimoto authored on 2011-03-09
897
    # Add relation tables(DEPRECATED!);
cleanup
Yuki Kimoto authored on 2011-10-21
898
    if ($opt{relation}) {
899
        warn "select() relation option is DEPRECATED!";
900
        $self->_add_relation_table($tables, $opt{relation});
901
    }
packaging one directory
yuki-kimoto authored on 2009-11-16
902
    
cleanup
Yuki Kimoto authored on 2011-04-02
903
    # Select statement
micro optimization
Yuki Kimoto authored on 2011-09-30
904
    my $sql = 'select ';
packaging one directory
yuki-kimoto authored on 2009-11-16
905
    
added EXPERIMENTAL select pr...
Yuki Kimoto authored on 2011-06-13
906
    # Prefix
cleanup
Yuki Kimoto authored on 2011-10-21
907
    $sql .= "$opt{prefix} " if defined $opt{prefix};
added EXPERIMENTAL select pr...
Yuki Kimoto authored on 2011-06-13
908
    
cleanup
Yuki Kimoto authored on 2011-10-21
909
    # Column
cleanup
Yuki Kimoto authored on 2011-10-21
910
    if (defined $opt{column}) {
911
        my $columns
912
          = ref $opt{column} eq 'ARRAY' ? $opt{column} : [$opt{column}];
cleanup
Yuki Kimoto authored on 2011-10-21
913
        for my $column (@$columns) {
- select() column option can...
Yuki Kimoto authored on 2011-06-08
914
            if (ref $column eq 'HASH') {
EXPERIMTANL column method th...
Yuki Kimoto authored on 2011-06-13
915
                $column = $self->column(%$column) if ref $column eq 'HASH';
- select() column option can...
Yuki Kimoto authored on 2011-06-08
916
            }
917
            elsif (ref $column eq 'ARRAY') {
- insert method created_at a...
Yuki Kimoto authored on 2011-10-27
918
                warn "select column option [COLUMN => ALIAS] syntax is DEPRECATED!" .
919
                  "use q method to quote the value";
- select method column optio...
Yuki Kimoto authored on 2011-07-11
920
                if (@$column == 3 && $column->[1] eq 'as') {
921
                    warn "[COLUMN, as => ALIAS] is DEPRECATED! use [COLUMN => ALIAS]";
922
                    splice @$column, 1, 1;
923
                }
924
                
added EXPERIMENTAL q method
Yuki Kimoto authored on 2011-10-27
925
                $column = join(' ', $column->[0], 'as', $self->q($column->[1]));
- select() column option can...
Yuki Kimoto authored on 2011-06-08
926
            }
cleanup
Yuki Kimoto authored on 2011-04-02
927
            unshift @$tables, @{$self->_search_tables($column)};
micro optimization
Yuki Kimoto authored on 2011-09-30
928
            $sql .= "$column, ";
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
929
        }
micro optimization
Yuki Kimoto authored on 2011-09-30
930
        $sql =~ s/, $/ /;
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
931
    }
micro optimization
Yuki Kimoto authored on 2011-09-30
932
    else { $sql .= '* ' }
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
933
    
934
    # Table
micro optimization
Yuki Kimoto authored on 2011-09-30
935
    $sql .= 'from ';
cleanup
Yuki Kimoto authored on 2011-10-21
936
    if ($opt{relation}) {
cleanup
Yuki Kimoto authored on 2011-03-30
937
        my $found = {};
cleanup
Yuki Kimoto authored on 2011-10-21
938
        for my $table (@$tables) {
added EXPERIMENTAL q method
Yuki Kimoto authored on 2011-10-27
939
            $sql .= $self->q($table) . ', ' unless $found->{$table};
cleanup
Yuki Kimoto authored on 2011-03-30
940
            $found->{$table} = 1;
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-14
941
        }
packaging one directory
yuki-kimoto authored on 2009-11-16
942
    }
added EXPERIMENTAL q method
Yuki Kimoto authored on 2011-10-27
943
    else { $sql .= $self->q($tables->[-1] || '') . ' ' }
micro optimization
Yuki Kimoto authored on 2011-09-30
944
    $sql =~ s/, $/ /;
cleanup
Yuki Kimoto authored on 2011-10-21
945
    croak "select method table option must be specified " . _subname
added EXPERIMENTAL DBIx::Cus...
Yuki Kimoto authored on 2011-10-26
946
      unless defined $tables->[-1];
cleanup
Yuki Kimoto authored on 2011-04-01
947

            
cleanup
Yuki Kimoto authored on 2011-04-02
948
    # Add tables in parameter
DEPRECATED select() param op...
Yuki Kimoto authored on 2011-04-25
949
    unshift @$tables,
950
            @{$self->_search_tables(join(' ', keys %$where_param) || '')};
fixed some select() join opi...
Yuki Kimoto authored on 2011-03-09
951
    
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
952
    # Where
cleanup
Yuki Kimoto authored on 2011-10-25
953
    my $w = $self->_where_clause_and_param($opt{where}, $where_param,
954
      delete $opt{id}, $opt{primary_key}, $tables->[-1]);
remove experimental DBIx::Cu...
Yuki Kimoto authored on 2011-03-08
955
    
fixed some select() join opi...
Yuki Kimoto authored on 2011-03-09
956
    # Add table names in where clause
cleanup
Yuki Kimoto authored on 2011-10-21
957
    unshift @$tables, @{$self->_search_tables($w->{clause})};
remove experimental DBIx::Cu...
Yuki Kimoto authored on 2011-03-08
958
    
cleanup
Yuki Kimoto authored on 2011-10-21
959
    # Join statement
cleanup
Yuki Kimoto authored on 2011-10-21
960
    $self->_push_join(\$sql, $opt{join}, $tables) if defined $opt{join};
remove experimental DBIx::Cu...
Yuki Kimoto authored on 2011-03-08
961
    
cleanup
Yuki Kimoto authored on 2011-03-09
962
    # Add where clause
cleanup
Yuki Kimoto authored on 2011-10-21
963
    $sql .= "$w->{clause} ";
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
964
    
cleanup
Yuki Kimoto authored on 2011-03-08
965
    # Relation(DEPRECATED!);
cleanup
Yuki Kimoto authored on 2011-10-21
966
    $self->_push_relation(\$sql, $tables, $opt{relation}, $w->{clause} eq '' ? 1 : 0)
cleanup
Yuki Kimoto authored on 2011-10-21
967
      if $opt{relation};
cleanup
Yuki Kimoto authored on 2011-03-08
968
    
packaging one directory
yuki-kimoto authored on 2009-11-16
969
    # Execute query
- insert method id value is ...
Yuki Kimoto authored on 2011-10-25
970
    $opt{statement} = 'select';
cleanup
Yuki Kimoto authored on 2011-10-21
971
    my $result = $self->execute($sql, $w->{param}, %opt);
packaging one directory
yuki-kimoto authored on 2009-11-16
972
    
micro optimization
Yuki Kimoto authored on 2011-10-23
973
    $result;
packaging one directory
yuki-kimoto authored on 2009-11-16
974
}
975

            
add experimental setup_model...
Yuki Kimoto authored on 2011-02-21
976
sub setup_model {
977
    my $self = shift;
978
    
cleanup
Yuki Kimoto authored on 2011-04-02
979
    # Setup model
add experimental setup_model...
Yuki Kimoto authored on 2011-02-21
980
    $self->each_column(
981
        sub {
982
            my ($self, $table, $column, $column_info) = @_;
983
            if (my $model = $self->models->{$table}) {
984
                push @{$model->columns}, $column;
985
            }
986
        }
987
    );
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-22
988
    return $self;
add experimental setup_model...
Yuki Kimoto authored on 2011-02-21
989
}
990

            
update pod
Yuki Kimoto authored on 2011-08-10
991
sub show_datatype {
992
    my ($self, $table) = @_;
993
    croak "Table name must be specified" unless defined $table;
994
    print "$table\n";
995
    
996
    my $result = $self->select(table => $table, where => "'0' <> '0'");
997
    my $sth = $result->sth;
998

            
999
    my $columns = $sth->{NAME};
1000
    my $data_types = $sth->{TYPE};
1001
    
1002
    for (my $i = 0; $i < @$columns; $i++) {
1003
        my $column = $columns->[$i];
show_datatype method return ...
Yuki Kimoto authored on 2011-11-03
1004
        my $data_type = lc $data_types->[$i];
update pod
Yuki Kimoto authored on 2011-08-10
1005
        print "$column: $data_type\n";
1006
    }
1007
}
1008

            
1009
sub show_typename {
1010
    my ($self, $t) = @_;
1011
    croak "Table name must be specified" unless defined $t;
1012
    print "$t\n";
1013
    
1014
    $self->each_column(sub {
1015
        my ($self, $table, $column, $infos) = @_;
1016
        return unless $table eq $t;
show_datatype method return ...
Yuki Kimoto authored on 2011-11-03
1017
        my $typename = lc $infos->{TYPE_NAME};
update pod
Yuki Kimoto authored on 2011-08-10
1018
        print "$column: $typename\n";
1019
    });
1020
    
1021
    return $self;
1022
}
1023

            
test cleanup
Yuki Kimoto authored on 2011-08-15
1024
sub show_tables {
1025
    my $self = shift;
1026
    
1027
    my %tables;
1028
    $self->each_table(sub { $tables{$_[1]}++ });
1029
    print join("\n", sort keys %tables) . "\n";
1030
    return $self;
1031
}
1032

            
added type_rule method and f...
Yuki Kimoto authored on 2011-06-09
1033
sub type_rule {
1034
    my $self = shift;
micro optimization
Yuki Kimoto authored on 2011-10-23
1035

            
1036
    $self->{_type_rule_is_called} = 1;
added type_rule method and f...
Yuki Kimoto authored on 2011-06-09
1037
    
1038
    if (@_) {
changed type_rule arguments ...
Yuki Kimoto authored on 2011-06-12
1039
        my $type_rule = ref $_[0] eq 'HASH' ? $_[0] : {@_};
fixed bug that type_rule fro...
Yuki Kimoto authored on 2011-06-13
1040
        
1041
        # Into
cleanup
Yuki Kimoto authored on 2011-10-21
1042
        for my $i (1 .. 2) {
EXPERIMENTAL type_rule argum...
Yuki Kimoto authored on 2011-06-17
1043
            my $into = "into$i";
cleanup
Yuki Kimoto authored on 2011-08-16
1044
            my $exists_into = exists $type_rule->{$into};
EXPERIMENTAL type_rule argum...
Yuki Kimoto authored on 2011-06-17
1045
            $type_rule->{$into} = _array_to_hash($type_rule->{$into});
1046
            $self->{type_rule} = $type_rule;
1047
            $self->{"_$into"} = {};
cleanup
Yuki Kimoto authored on 2011-10-21
1048
            for my $type_name (keys %{$type_rule->{$into} || {}}) {
EXPERIMENTAL type_rule argum...
Yuki Kimoto authored on 2011-06-17
1049
                croak qq{type name of $into section must be lower case}
1050
                  if $type_name =~ /[A-Z]/;
1051
            }
cleanup
Yuki Kimoto authored on 2011-08-16
1052
            
EXPERIMENTAL type_rule argum...
Yuki Kimoto authored on 2011-06-17
1053
            $self->each_column(sub {
1054
                my ($dbi, $table, $column, $column_info) = @_;
1055
                
1056
                my $type_name = lc $column_info->{TYPE_NAME};
1057
                if ($type_rule->{$into} &&
1058
                    (my $filter = $type_rule->{$into}->{$type_name}))
type_rule can receive filter...
Yuki Kimoto authored on 2011-06-12
1059
                {
EXPERIMENTAL type_rule argum...
Yuki Kimoto authored on 2011-06-17
1060
                    return unless exists $type_rule->{$into}->{$type_name};
1061
                    if  (defined $filter && ref $filter ne 'CODE') 
1062
                    {
1063
                        my $fname = $filter;
1064
                        croak qq{Filter "$fname" is not registered" } . _subname
1065
                          unless exists $self->filters->{$fname};
1066
                        
1067
                        $filter = $self->filters->{$fname};
1068
                    }
1069

            
micro optimization
Yuki Kimoto authored on 2011-07-30
1070
                    $self->{"_$into"}{key}{$table}{$column} = $filter;
1071
                    $self->{"_$into"}{dot}{"$table.$column"} = $filter;
EXPERIMENTAL type_rule argum...
Yuki Kimoto authored on 2011-06-17
1072
                }
1073
            });
1074
        }
1075

            
1076
        # From
cleanup
Yuki Kimoto authored on 2011-10-21
1077
        for my $i (1 .. 2) {
EXPERIMENTAL type_rule argum...
Yuki Kimoto authored on 2011-06-17
1078
            $type_rule->{"from$i"} = _array_to_hash($type_rule->{"from$i"});
cleanup
Yuki Kimoto authored on 2011-10-21
1079
            for my $data_type (keys %{$type_rule->{"from$i"} || {}}) {
EXPERIMENTAL type_rule argum...
Yuki Kimoto authored on 2011-06-17
1080
                croak qq{data type of from$i section must be lower case or number}
1081
                  if $data_type =~ /[A-Z]/;
1082
                my $fname = $type_rule->{"from$i"}{$data_type};
1083
                if (defined $fname && ref $fname ne 'CODE') {
type_rule can receive filter...
Yuki Kimoto authored on 2011-06-12
1084
                    croak qq{Filter "$fname" is not registered" } . _subname
1085
                      unless exists $self->filters->{$fname};
1086
                    
EXPERIMENTAL type_rule argum...
Yuki Kimoto authored on 2011-06-17
1087
                    $type_rule->{"from$i"}{$data_type} = $self->filters->{$fname};
type_rule can receive filter...
Yuki Kimoto authored on 2011-06-12
1088
                }
fixed bug that type_rule fro...
Yuki Kimoto authored on 2011-06-13
1089
            }
1090
        }
1091
        
added type_rule method and f...
Yuki Kimoto authored on 2011-06-09
1092
        return $self;
1093
    }
1094
    
1095
    return $self->{type_rule} || {};
1096
}
1097

            
cleanup
yuki-kimoto authored on 2010-10-17
1098
sub update {
- insert, insert_at, update,...
Yuki Kimoto authored on 2011-06-08
1099
    my $self = shift;
added EXPERIMENTAL reserved_...
Yuki Kimoto authored on 2011-03-30
1100

            
cleanup
Yuki Kimoto authored on 2011-10-21
1101
    # Options
cleanup
Yuki Kimoto authored on 2011-10-21
1102
    my $param = @_ % 2 ? shift : undef;
cleanup
Yuki Kimoto authored on 2011-10-21
1103
    my %opt = @_;
cleanup
Yuki Kimoto authored on 2011-10-21
1104
    warn "update param option is DEPRECATED!" if $opt{param};
cleanup
Yuki Kimoto authored on 2011-10-21
1105
    warn "update method where_param option is DEPRECATED!"
1106
      if $opt{where_param};
cleanup
Yuki Kimoto authored on 2011-10-21
1107
    $param ||= $opt{param} || {};
- added EXPERIMENTAL timesta...
Yuki Kimoto authored on 2011-09-02
1108
    
cleanup
Yuki Kimoto authored on 2011-10-21
1109
    # Don't allow update all rows
1110
    croak qq{update method where option must be specified } . _subname
1111
      if !$opt{where} && !defined $opt{id} && !$opt{allow_update_all};
1112
    
added EXPERIMENTAL insert cr...
Yuki Kimoto authored on 2011-10-25
1113
    # Timestamp(DEPRECATED!)
cleanup
Yuki Kimoto authored on 2011-10-21
1114
    if ($opt{timestamp} && (my $update_timestamp = $self->update_timestamp)) {
- insert timestamp option is...
Yuki Kimoto authored on 2011-10-25
1115
        warn "update timestamp option is DEPRECATED! use updated_at and now method";
- added EXPERIMENTAL update_...
Yuki Kimoto authored on 2011-09-12
1116
        my $columns = $update_timestamp->[0];
1117
        $columns = [$columns] unless ref $columns eq 'ARRAY';
1118
        my $value = $update_timestamp->[1];
1119
        $value = $value->() if ref $value eq 'CODE';
1120
        $param->{$_} = $value for @$columns;
- added EXPERIMENTAL timesta...
Yuki Kimoto authored on 2011-09-02
1121
    }
1122

            
added EXPERIMENTAL insert cr...
Yuki Kimoto authored on 2011-10-25
1123
    # Created time and updated time
1124
    my @timestamp_cleanup;
1125
    if (defined $opt{updated_at}) {
- insert method created_at a...
Yuki Kimoto authored on 2011-10-27
1126
        my $now = $self->now;
1127
        $now = $now->() if ref $now eq 'CODE';
added EXPERIMENTAL insert cr...
Yuki Kimoto authored on 2011-10-25
1128
        $param->{$opt{updated_at}} = $self->now->();
1129
        push @timestamp_cleanup, $opt{updated_at};
1130
    }
1131

            
cleanup
Yuki Kimoto authored on 2011-10-21
1132
    # Assign clause
cleanup
Yuki Kimoto authored on 2011-10-21
1133
    my $assign_clause = $self->assign_clause($param, {wrap => $opt{wrap}});
cleanup
Yuki Kimoto authored on 2011-10-21
1134
    
improved delete() and update...
Yuki Kimoto authored on 2011-01-26
1135
    # Where
cleanup
Yuki Kimoto authored on 2011-10-25
1136
    my $w = $self->_where_clause_and_param($opt{where}, $opt{where_param},
1137
      delete $opt{id}, $opt{primary_key}, $opt{table});
removed reconnect method
yuki-kimoto authored on 2010-05-28
1138
    
cleanup
Yuki Kimoto authored on 2011-04-02
1139
    # Update statement
cleanup
Yuki Kimoto authored on 2011-10-21
1140
    my $sql = "update ";
1141
    $sql .= "$opt{prefix} " if defined $opt{prefix};
added EXPERIMENTAL q method
Yuki Kimoto authored on 2011-10-27
1142
    $sql .= $self->q($opt{table}) . " set $assign_clause $w->{clause} ";
cleanup
Yuki Kimoto authored on 2011-01-27
1143
    
cleanup
yuki-kimoto authored on 2010-10-17
1144
    # Execute query
- insert method id value is ...
Yuki Kimoto authored on 2011-10-25
1145
    $opt{statement} = 'update';
added EXPERIMENTAL insert cr...
Yuki Kimoto authored on 2011-10-25
1146
    $opt{cleanup} = \@timestamp_cleanup;
micro optimization and
Yuki Kimoto authored on 2011-10-25
1147
    $self->execute($sql, [$param, $w->{param}], %opt);
removed reconnect method
yuki-kimoto authored on 2010-05-28
1148
}
1149

            
cleanup
Yuki Kimoto authored on 2011-11-01
1150
sub update_all { shift->update(@_, allow_update_all => 1) };
cleanup
yuki-kimoto authored on 2010-10-17
1151

            
cleanup
Yuki Kimoto authored on 2011-10-21
1152
sub update_or_insert {
- EXPERIMENTAL update_or_ins...
Yuki Kimoto authored on 2011-10-27
1153
    my ($self, $param, %opt) = @_;
1154
    croak "update_or_insert method need primary_key and id option "
1155
      unless defined $opt{id} && defined $opt{primary_key};
1156
    my $statement_opt = $opt{option} || {};
- id option work if id count...
Yuki Kimoto authored on 2011-11-03
1157

            
1158
    my $rows = $self->select(%opt, %{$statement_opt->{select} || {}})->all;
1159
    if (@$rows == 0) {
1160
        return $self->insert($param, %opt, %{$statement_opt->{insert} || {}});
1161
    }
1162
    elsif (@$rows == 1) {
1163
        return $self->update($param, %opt, %{$statement_opt->{update} || {}});
1164
    }
1165
    else {
1166
        croak "selected row must be one " . _subname;
1167
    }
cleanup
Yuki Kimoto authored on 2011-10-21
1168
}
1169

            
- added EXPERIMENTAL update_...
Yuki Kimoto authored on 2011-09-12
1170
sub update_timestamp {
1171
    my $self = shift;
1172
    
- insert timestamp option is...
Yuki Kimoto authored on 2011-10-25
1173
    warn "update_timestamp method is DEPRECATED! use now method";
1174
    
- added EXPERIMENTAL update_...
Yuki Kimoto authored on 2011-09-12
1175
    if (@_) {
1176
        $self->{update_timestamp} = [@_];
1177
        
1178
        return $self;
1179
    }
1180
    return $self->{update_timestamp};
1181
}
1182

            
- method method of DBIx::Cus...
Yuki Kimoto authored on 2011-10-10
1183
sub values_clause {
1184
    my ($self, $param, $opts) = @_;
1185
    
1186
    my $wrap = $opts->{wrap} || {};
1187
    
1188
    # Create insert parameter tag
micro optimization
Yuki Kimoto authored on 2011-11-16
1189
    my ($q, $p) = split //, $self->q('');
- method method of DBIx::Cus...
Yuki Kimoto authored on 2011-10-10
1190
    
micro optimization
Yuki Kimoto authored on 2011-10-23
1191
    # values clause(performance is important)
micro optimization
Yuki Kimoto authored on 2011-10-23
1192
    '(' .
1193
    join(
1194
      ', ',
1195
      map { "$q$_$p" } sort keys %$param
1196
    ) .
1197
    ') values (' .
1198
    join(
1199
      ', ',
1200
      map {
1201
          ref $param->{$_} eq 'SCALAR' ? ${$param->{$_}} :
1202
          $wrap->{$_} ? $wrap->{$_}->(":$_") :
1203
          ":$_";
1204
      } sort keys %$param
1205
    ) .
1206
    ')'
- method method of DBIx::Cus...
Yuki Kimoto authored on 2011-10-10
1207
}
1208

            
sub module use DBIx::Custom ...
Yuki Kimoto authored on 2011-08-02
1209
sub where { DBIx::Custom::Where->new(dbi => shift, @_) }
added experimental DBIx::Cus...
Yuki Kimoto authored on 2011-01-18
1210

            
updated pod
Yuki Kimoto authored on 2011-06-21
1211
sub _create_query {
cleanup
Yuki Kimoto authored on 2011-06-13
1212
    
added EXPERIMENTAL reuse_que...
Yuki Kimoto authored on 2011-10-22
1213
    my ($self, $source, $after_build_sql) = @_;
cleanup
Yuki Kimoto authored on 2011-06-13
1214
    
updated pod
Yuki Kimoto authored on 2011-06-21
1215
    # Cache
1216
    my $cache = $self->cache;
1217
    
1218
    # Query
1219
    my $query;
1220
    
1221
    # Get cached query
1222
    if ($cache) {
cleanup
Yuki Kimoto authored on 2011-06-13
1223
        
updated pod
Yuki Kimoto authored on 2011-06-21
1224
        # Get query
1225
        my $q = $self->cache_method->($self, $source);
cleanup
Yuki Kimoto authored on 2011-06-13
1226
        
updated pod
Yuki Kimoto authored on 2011-06-21
1227
        # Create query
1228
        if ($q) {
1229
            $query = DBIx::Custom::Query->new($q);
DBIx::Custom::Query filters ...
Yuki Kimoto authored on 2011-07-30
1230
            $query->{filters} = $self->filters;
cleanup
Yuki Kimoto authored on 2011-06-13
1231
        }
updated pod
Yuki Kimoto authored on 2011-06-21
1232
    }
1233
    
1234
    # Create query
1235
    unless ($query) {
1236

            
1237
        # Create query
1238
        my $builder = $self->query_builder;
1239
        $query = $builder->build_query($source);
cleanup
Yuki Kimoto authored on 2011-11-16
1240
        
updated pod
Yuki Kimoto authored on 2011-06-21
1241
        # Save query to cache
1242
        $self->cache_method->(
1243
            $self, $source,
1244
            {
micro optimization
Yuki Kimoto authored on 2011-11-16
1245
                sql     => $query->{sql}, 
1246
                columns => $query->{columns},
DBIx::Custom::Query tables a...
Yuki Kimoto authored on 2011-07-30
1247
                tables  => $query->{tables} || []
updated pod
Yuki Kimoto authored on 2011-06-21
1248
            }
1249
        ) if $cache;
cleanup
Yuki Kimoto authored on 2011-06-13
1250
    }
added EXPERIMENTAL execute m...
Yuki Kimoto authored on 2011-08-14
1251

            
1252
    # Filter SQL
micro optimization
Yuki Kimoto authored on 2011-11-16
1253
    $query->{sql} = $after_build_sql->($query->{sql}) if $after_build_sql;
1254
    
added EXPERIMENTAL last_sql ...
Yuki Kimoto authored on 2011-07-11
1255
    # Save sql
micro optimization
Yuki Kimoto authored on 2011-11-16
1256
    $self->{last_sql} = $query->{sql};
added EXPERIMENTAL last_sql ...
Yuki Kimoto authored on 2011-07-11
1257
    
updated pod
Yuki Kimoto authored on 2011-06-21
1258
    # Prepare statement handle
1259
    my $sth;
added EXPERIMENTAL reuse_que...
Yuki Kimoto authored on 2011-10-22
1260
    eval { $sth = $self->dbh->prepare($query->{sql}) };
updated pod
Yuki Kimoto authored on 2011-06-21
1261
    
1262
    if ($@) {
1263
        $self->_croak($@, qq{. Following SQL is executed.\n}
1264
                        . qq{$query->{sql}\n} . _subname);
1265
    }
1266
    
1267
    # Set statement handle
micro optimization
Yuki Kimoto authored on 2011-11-16
1268
    $query->{sth} = $sth;
updated pod
Yuki Kimoto authored on 2011-06-21
1269
    
1270
    # Set filters
DBIx::Custom::Query filters ...
Yuki Kimoto authored on 2011-07-30
1271
    $query->{filters} = $self->filters;
updated pod
Yuki Kimoto authored on 2011-06-21
1272
    
1273
    return $query;
cleanup
Yuki Kimoto authored on 2011-06-13
1274
}
1275

            
cleanup
Yuki Kimoto authored on 2011-04-02
1276
sub _create_bind_values {
EXPERIMENTAL type_rule argum...
Yuki Kimoto authored on 2011-06-17
1277
    my ($self, $params, $columns, $filter, $type_filters, $bind_type) = @_;
removed reconnect method
yuki-kimoto authored on 2010-05-28
1278
    
micro optimization
Yuki Kimoto authored on 2011-10-23
1279
    $bind_type = _array_to_hash($bind_type) if ref $bind_type eq 'ARRAY';
1280
    
cleanup
Yuki Kimoto authored on 2011-04-02
1281
    # Create bind values
micro optimization
Yuki Kimoto authored on 2011-10-23
1282
    my @bind;
1283
    my @types;
1284
    my %count;
1285
    my %not_exists;
cleanup
Yuki Kimoto authored on 2011-10-21
1286
    for my $column (@$columns) {
removed reconnect method
yuki-kimoto authored on 2010-05-28
1287
        
micro optimization
Yuki Kimoto authored on 2011-10-23
1288
        # Bind value
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
1289
        if(ref $params->{$column} eq 'ARRAY') {
micro optimization
Yuki Kimoto authored on 2011-10-23
1290
            my $i = $count{$column} || 0;
1291
            $i += $not_exists{$column} || 0;
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
1292
            my $found;
1293
            for (my $k = $i; $i < @{$params->{$column}}; $k++) {
1294
                if (ref $params->{$column}->[$k] eq 'DBIx::Custom::NotExists') {
micro optimization
Yuki Kimoto authored on 2011-10-23
1295
                    $not_exists{$column}++;
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
1296
                }
1297
                else  {
micro optimization
Yuki Kimoto authored on 2011-10-23
1298
                    push @bind, $params->{$column}->[$k];
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
1299
                    $found = 1;
1300
                    last
1301
                }
1302
            }
1303
            next unless $found;
1304
        }
micro optimization
Yuki Kimoto authored on 2011-10-23
1305
        else { push @bind, $params->{$column} }
removed reconnect method
yuki-kimoto authored on 2010-05-28
1306
        
cleanup
Yuki Kimoto authored on 2011-01-12
1307
        # Filter
micro optimization
Yuki Kimoto authored on 2011-10-23
1308
        if (my $f = $filter->{$column} || $self->{default_out_filter} || '') {
micro optimization
Yuki Kimoto authored on 2011-10-23
1309
            $bind[-1] = $f->($bind[-1]);
micro optimization
Yuki Kimoto authored on 2011-10-23
1310
        }
separate DBIx::Custom type_r...
Yuki Kimoto authored on 2011-06-15
1311
        
1312
        # Type rule
micro optimization
Yuki Kimoto authored on 2011-10-23
1313
        if ($self->{_type_rule_is_called}) {
1314
            my $tf1 = $self->{"_into1"}->{dot}->{$column}
1315
              || $type_filters->{1}->{$column};
micro optimization
Yuki Kimoto authored on 2011-10-23
1316
            $bind[-1] = $tf1->($bind[-1]) if $tf1;
micro optimization
Yuki Kimoto authored on 2011-10-23
1317
            my $tf2 = $self->{"_into2"}->{dot}->{$column}
1318
              || $type_filters->{2}->{$column};
micro optimization
Yuki Kimoto authored on 2011-10-23
1319
            $bind[-1] = $tf2->($bind[-1]) if $tf2;
micro optimization
Yuki Kimoto authored on 2011-10-23
1320
        }
micro optimization
Yuki Kimoto authored on 2011-10-22
1321
       
micro optimization
Yuki Kimoto authored on 2011-10-23
1322
        # Bind types
micro optimization
Yuki Kimoto authored on 2011-10-23
1323
        push @types, $bind_type->{$column};
removed reconnect method
yuki-kimoto authored on 2010-05-28
1324
        
1325
        # Count up 
micro optimization
Yuki Kimoto authored on 2011-10-23
1326
        $count{$column}++;
removed reconnect method
yuki-kimoto authored on 2010-05-28
1327
    }
1328
    
micro optimization
Yuki Kimoto authored on 2011-10-23
1329
    return (\@bind, \@types);
removed reconnect method
yuki-kimoto authored on 2010-05-28
1330
}
1331

            
cleanup
Yuki Kimoto authored on 2011-10-21
1332
sub _id_to_param {
fixed id option bug when col...
Yuki Kimoto authored on 2011-10-10
1333
    my ($self, $id, $primary_keys, $table) = @_;
cleanup
Yuki Kimoto authored on 2011-10-21
1334
    
1335
    # Check primary key
cleanup
Yuki Kimoto authored on 2011-10-21
1336
    croak "primary_key option " .
- id option work if id count...
Yuki Kimoto authored on 2011-11-03
1337
          "must be specified when id option is used" . _subname
cleanup
Yuki Kimoto authored on 2011-10-21
1338
      unless defined $primary_keys;
1339
    $primary_keys = [$primary_keys] unless ref $primary_keys eq 'ARRAY';
improved error messages
Yuki Kimoto authored on 2011-04-18
1340
    
cleanup
Yuki Kimoto authored on 2011-06-08
1341
    # Create parameter
1342
    my $param = {};
fixed small insert, update, ...
Yuki Kimoto authored on 2011-06-21
1343
    if (defined $id) {
cleanup
Yuki Kimoto authored on 2011-06-08
1344
        $id = [$id] unless ref $id;
- id option work if id count...
Yuki Kimoto authored on 2011-11-03
1345
        for(my $i = 0; $i < @$id; $i++) {
fixed id option bug when col...
Yuki Kimoto authored on 2011-10-10
1346
           my $key = $primary_keys->[$i];
1347
           $key = "$table." . $key if $table;
1348
           $param->{$key} = $id->[$i];
improved error messages
Yuki Kimoto authored on 2011-04-18
1349
        }
1350
    }
1351
    
cleanup
Yuki Kimoto authored on 2011-06-08
1352
    return $param;
improved error messages
Yuki Kimoto authored on 2011-04-18
1353
}
1354

            
EXPERIMETAL fork safety impl...
Yuki Kimoto authored on 2011-03-12
1355
sub _connect {
1356
    my $self = shift;
1357
    
1358
    # Attributes
added warnings
Yuki Kimoto authored on 2011-06-07
1359
    my $dsn = $self->data_source;
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
1360
    warn "data_source is DEPRECATED!\n"
fixed bug that data_source D...
Yuki Kimoto authored on 2011-06-13
1361
      if $dsn;
added warnings
Yuki Kimoto authored on 2011-06-07
1362
    $dsn ||= $self->dsn;
data_source is DEPRECATED! I...
Yuki Kimoto authored on 2011-06-06
1363
    croak qq{"dsn" must be specified } . _subname
1364
      unless $dsn;
EXPERIMETAL fork safety impl...
Yuki Kimoto authored on 2011-03-12
1365
    my $user        = $self->user;
1366
    my $password    = $self->password;
- dbi_option attribute is re...
Yuki Kimoto authored on 2011-10-05
1367
    my $option = $self->_option;
1368
    $option = {%{$self->default_option}, %$option};
cleanup
Yuki Kimoto authored on 2011-08-16
1369
    
EXPERIMETAL fork safety impl...
Yuki Kimoto authored on 2011-03-12
1370
    # Connect
cleanup
Yuki Kimoto authored on 2011-08-16
1371
    my $dbh;
1372
    eval {
1373
        $dbh = DBI->connect(
1374
            $dsn,
1375
            $user,
1376
            $password,
- dbi_option attribute is re...
Yuki Kimoto authored on 2011-10-05
1377
            $option
cleanup
Yuki Kimoto authored on 2011-08-16
1378
        );
1379
    };
EXPERIMETAL fork safety impl...
Yuki Kimoto authored on 2011-03-12
1380
    
1381
    # Connect error
cleanup
Yuki Kimoto authored on 2011-04-25
1382
    croak "$@ " . _subname if $@;
EXPERIMETAL fork safety impl...
Yuki Kimoto authored on 2011-03-12
1383
    
1384
    return $dbh;
1385
}
1386

            
cleanup
yuki-kimoto authored on 2010-10-17
1387
sub _croak {
1388
    my ($self, $error, $append) = @_;
cleanup
Yuki Kimoto authored on 2011-04-02
1389
    
1390
    # Append
cleanup
yuki-kimoto authored on 2010-10-17
1391
    $append ||= "";
1392
    
1393
    # Verbose
1394
    if ($Carp::Verbose) { croak $error }
1395
    
1396
    # Not verbose
1397
    else {
1398
        
1399
        # Remove line and module infromation
1400
        my $at_pos = rindex($error, ' at ');
1401
        $error = substr($error, 0, $at_pos);
1402
        $error =~ s/\s+$//;
1403
        croak "$error$append";
1404
    }
1405
}
1406

            
prepare oracle test
Yuki Kimoto authored on 2011-08-15
1407
sub _driver { lc shift->{dbh}->{Driver}->{Name} }
1408

            
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
1409
sub _need_tables {
1410
    my ($self, $tree, $need_tables, $tables) = @_;
1411
    
cleanup
Yuki Kimoto authored on 2011-04-02
1412
    # Get needed tables
cleanup
Yuki Kimoto authored on 2011-10-21
1413
    for my $table (@$tables) {
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
1414
        if ($tree->{$table}) {
1415
            $need_tables->{$table} = 1;
1416
            $self->_need_tables($tree, $need_tables, [$tree->{$table}{parent}])
1417
        }
1418
    }
1419
}
1420

            
- dbi_option attribute is re...
Yuki Kimoto authored on 2011-10-05
1421
sub _option {
1422
    my $self = shift;
1423
    my $option = {%{$self->dbi_options}, %{$self->dbi_option}, %{$self->option}};
1424
    warn "dbi_options is DEPRECATED! use option instead\n"
1425
      if keys %{$self->dbi_options};
1426
    warn "dbi_option is DEPRECATED! use option instead\n"
1427
      if keys %{$self->dbi_option};
1428
    return $option;
1429
}
1430

            
fixed some select() join opi...
Yuki Kimoto authored on 2011-03-09
1431
sub _push_join {
1432
    my ($self, $sql, $join, $join_tables) = @_;
1433
    
cleanup
Yuki Kimoto authored on 2011-10-21
1434
    $join = [$join] unless ref $join eq 'ARRAY';
cleanup
Yuki Kimoto authored on 2011-10-21
1435
    
cleanup
Yuki Kimoto authored on 2011-04-02
1436
    # No join
fixed some select() join opi...
Yuki Kimoto authored on 2011-03-09
1437
    return unless @$join;
1438
    
cleanup
Yuki Kimoto authored on 2011-04-02
1439
    # Push join clause
fixed some select() join opi...
Yuki Kimoto authored on 2011-03-09
1440
    my $tree = {};
1441
    for (my $i = 0; $i < @$join; $i++) {
1442
        
cleanup
Yuki Kimoto authored on 2011-07-28
1443
        # Arrange
added join new syntax
Yuki Kimoto authored on 2011-07-28
1444
        my $join_clause;;
1445
        my $option;
1446
        if (ref $join->[$i] eq 'HASH') {
1447
            $join_clause = $join->[$i]->{clause};
1448
            $option = {table => $join->[$i]->{table}};
1449
        }
1450
        else {
1451
            $join_clause = $join->[$i];
1452
            $option = {};
1453
        };
cleanup
Yuki Kimoto authored on 2011-07-28
1454

            
1455
        # Find tables in join clause
added join new syntax
Yuki Kimoto authored on 2011-07-28
1456
        my $table1;
1457
        my $table2;
1458
        if (my $table = $option->{table}) {
1459
            $table1 = $table->[0];
1460
            $table2 = $table->[1];
fixed some select() join opi...
Yuki Kimoto authored on 2011-03-09
1461
        }
cleanup
Yuki Kimoto authored on 2011-07-28
1462
        else {
1463
            my $q = $self->_quote;
1464
            my $j_clause = (split /\s+on\s+/, $join_clause)[-1];
1465
            $j_clause =~ s/'.+?'//g;
1466
            my $q_re = quotemeta($q);
added quote method's two cha...
Yuki Kimoto authored on 2011-07-29
1467
            $j_clause =~ s/[$q_re]//g;
improved join clause parsing
Yuki Kimoto authored on 2011-09-27
1468
            
1469
            my @j_clauses = reverse split /\s(and|on)\s/, $j_clause;
cleanup
Yuki Kimoto authored on 2011-07-28
1470
            my $c = $self->safety_character;
- update_param is DEPRECATED...
Yuki Kimoto authored on 2011-10-04
1471
            my $join_re = qr/($c+)\.$c+[^$c].*?($c+)\.$c+/sm;
improved join clause parsing
Yuki Kimoto authored on 2011-09-27
1472
            for my $clause (@j_clauses) {
1473
                if ($clause =~ $join_re) {
1474
                    $table1 = $1;
1475
                    $table2 = $2;
1476
                    last;
1477
                }                
cleanup
Yuki Kimoto authored on 2011-07-28
1478
            }
fixed some select() join opi...
Yuki Kimoto authored on 2011-03-09
1479
        }
added join new syntax
Yuki Kimoto authored on 2011-07-28
1480
        croak qq{join clause must have two table name after "on" keyword. } .
1481
              qq{"$join_clause" is passed }  . _subname
1482
          unless defined $table1 && defined $table2;
1483
        croak qq{right side table of "$join_clause" must be unique }
1484
            . _subname
1485
          if exists $tree->{$table2};
1486
        croak qq{Same table "$table1" is specified} . _subname
1487
          if $table1 eq $table2;
1488
        $tree->{$table2}
1489
          = {position => $i, parent => $table1, join => $join_clause};
fixed some select() join opi...
Yuki Kimoto authored on 2011-03-09
1490
    }
1491
    
cleanup
Yuki Kimoto authored on 2011-04-02
1492
    # Search need tables
fixed some select() join opi...
Yuki Kimoto authored on 2011-03-09
1493
    my $need_tables = {};
1494
    $self->_need_tables($tree, $need_tables, $join_tables);
cleanup
Yuki Kimoto authored on 2011-10-21
1495
    my @need_tables = sort { $tree->{$a}{position} <=> $tree->{$b}{position} }
1496
      keys %$need_tables;
cleanup
Yuki Kimoto authored on 2011-04-02
1497
    
1498
    # Add join clause
cleanup
Yuki Kimoto authored on 2011-10-21
1499
    $$sql .= $tree->{$_}{join} . ' ' for @need_tables;
fixed some select() join opi...
Yuki Kimoto authored on 2011-03-09
1500
}
cleanup
Yuki Kimoto authored on 2011-03-08
1501

            
reserved_word_quote is DEPRE...
Yuki Kimoto authored on 2011-06-17
1502
sub _quote {
1503
    my $self = shift;
micro optimization
Yuki Kimoto authored on 2011-10-22
1504
    return $self->{reserved_word_quote} || $self->quote || '';
reserved_word_quote is DEPRE...
Yuki Kimoto authored on 2011-06-17
1505
}
1506

            
cleanup
Yuki Kimoto authored on 2011-04-02
1507
sub _remove_duplicate_table {
1508
    my ($self, $tables, $main_table) = @_;
1509
    
1510
    # Remove duplicate table
1511
    my %tables = map {defined $_ ? ($_ => 1) : ()} @$tables;
1512
    delete $tables{$main_table} if $main_table;
1513
    
micro optimization
Yuki Kimoto authored on 2011-07-30
1514
    my $new_tables = [keys %tables, $main_table ? $main_table : ()];
1515
    if (my $q = $self->_quote) {
1516
        $q = quotemeta($q);
1517
        $_ =~ s/[$q]//g for @$new_tables;
1518
    }
1519

            
1520
    return $new_tables;
cleanup
Yuki Kimoto authored on 2011-04-02
1521
}
1522

            
cleanup
Yuki Kimoto authored on 2011-04-02
1523
sub _search_tables {
cleanup
Yuki Kimoto authored on 2011-04-02
1524
    my ($self, $source) = @_;
1525
    
cleanup
Yuki Kimoto authored on 2011-04-02
1526
    # Search tables
cleanup
Yuki Kimoto authored on 2011-04-02
1527
    my $tables = [];
1528
    my $safety_character = $self->safety_character;
reserved_word_quote is DEPRE...
Yuki Kimoto authored on 2011-06-17
1529
    my $q = $self->_quote;
added EXPERIMENTAL q method
Yuki Kimoto authored on 2011-10-27
1530
    my $quoted_safety_character_re = $self->q("?([$safety_character]+)", 1);
fixex [] reserved_word_quote...
Yuki Kimoto authored on 2011-08-14
1531
    my $table_re = $q ? qr/(?:^|[^$safety_character])${quoted_safety_character_re}?\./
improved table search in col...
Yuki Kimoto authored on 2011-04-12
1532
                      : qr/(?:^|[^$safety_character])([$safety_character]+)\./;
cleanup
Yuki Kimoto authored on 2011-04-02
1533
    while ($source =~ /$table_re/g) {
1534
        push @$tables, $1;
1535
    }
1536
    
1537
    return $tables;
1538
}
1539

            
cleanup
Yuki Kimoto authored on 2011-10-21
1540
sub _where_clause_and_param {
cleanup
Yuki Kimoto authored on 2011-10-25
1541
    my ($self, $where, $where_param, $id, $primary_key, $table) = @_;
cleanup
Yuki Kimoto authored on 2011-10-25
1542

            
cleanup
Yuki Kimoto authored on 2011-10-21
1543
    $where ||= {};
cleanup
Yuki Kimoto authored on 2011-10-25
1544
    $where = $self->_id_to_param($id, $primary_key, $table) if defined $id;
cleanup
Yuki Kimoto authored on 2011-10-25
1545
    $where_param ||= {};
cleanup
Yuki Kimoto authored on 2011-10-21
1546
    my $w = {};
1547
    my $where_clause = '';
cleanup
Yuki Kimoto authored on 2011-10-25
1548

            
cleanup
Yuki Kimoto authored on 2011-10-25
1549
    my $obj;
1550
    
- id option work if id count...
Yuki Kimoto authored on 2011-11-03
1551
    if (ref $where) {
cleanup
Yuki Kimoto authored on 2011-10-25
1552
        if (ref $where eq 'HASH') {
1553
            my $clause = ['and'];
cleanup
Yuki Kimoto authored on 2011-11-01
1554
            my $column_join = '';
cleanup
Yuki Kimoto authored on 2011-10-25
1555
            for my $column (keys %$where) {
cleanup
Yuki Kimoto authored on 2011-11-01
1556
                $column_join .= $column;
cleanup
Yuki Kimoto authored on 2011-10-25
1557
                my $table;
1558
                my $c;
1559
                if ($column =~ /(?:(.*?)\.)?(.*)/) {
1560
                    $table = $1;
1561
                    $c = $2;
1562
                }
1563
                
1564
                my $table_quote;
added EXPERIMENTAL q method
Yuki Kimoto authored on 2011-10-27
1565
                $table_quote = $self->q($table) if defined $table;
1566
                my $column_quote = $self->q($c);
cleanup
Yuki Kimoto authored on 2011-10-25
1567
                $column_quote = $table_quote . '.' . $column_quote
1568
                  if defined $table_quote;
cleanup
Yuki Kimoto authored on 2011-11-01
1569
                push @$clause, "$column_quote = :$column";
cleanup
Yuki Kimoto authored on 2011-10-25
1570
            }
cleanup
Yuki Kimoto authored on 2011-11-01
1571

            
1572
            # Check unsafety column
1573
            my $safety = $self->safety_character;
1574
            unless ($column_join =~ /^[$safety\.]+$/) {
1575
                for my $column (keys %$where) {
1576
                    croak qq{"$column" is not safety column name } . _subname
1577
                      unless $column =~ /^[$safety\.]+$/;
1578
                }
1579
            }
1580
            
cleanup
Yuki Kimoto authored on 2011-10-25
1581
            $obj = $self->where(clause => $clause, param => $where);
1582
        }
cleanup
Yuki Kimoto authored on 2011-11-01
1583
        elsif (ref $where eq 'DBIx::Custom::Where') { $obj = $where }
cleanup
Yuki Kimoto authored on 2011-10-25
1584
        elsif (ref $where eq 'ARRAY') {
cleanup
Yuki Kimoto authored on 2011-11-01
1585
            $obj = $self->where(clause => $where->[0], param => $where->[1]);
cleanup
Yuki Kimoto authored on 2011-10-25
1586
        }
1587
        
1588
        # Check where argument
1589
        croak qq{"where" must be hash reference or DBIx::Custom::Where object}
1590
            . qq{or array reference, which contains where clause and parameter}
1591
            . _subname
1592
          unless ref $obj eq 'DBIx::Custom::Where';
1593

            
1594
        $w->{param} = keys %$where_param
1595
                    ? $self->merge_param($where_param, $obj->param)
1596
                    : $obj->param;
1597
        $w->{clause} = $obj->to_string;
cleanup
Yuki Kimoto authored on 2011-10-21
1598
    }
1599
    elsif ($where) {
1600
        $w->{clause} = "where $where";
cleanup
Yuki Kimoto authored on 2011-10-25
1601
        $w->{param} = $where_param;
cleanup
Yuki Kimoto authored on 2011-10-21
1602
    }
1603
    
1604
    return $w;
1605
}
1606

            
updated pod
Yuki Kimoto authored on 2011-06-21
1607
sub _apply_filter {
1608
    my ($self, $table, @cinfos) = @_;
1609

            
1610
    # Initialize filters
1611
    $self->{filter} ||= {};
micro optimization
Yuki Kimoto authored on 2011-07-30
1612
    $self->{filter}{on} = 1;
updated pod
Yuki Kimoto authored on 2011-06-21
1613
    $self->{filter}{out} ||= {};
1614
    $self->{filter}{in} ||= {};
1615
    $self->{filter}{end} ||= {};
1616
    
1617
    # Usage
1618
    my $usage = "Usage: \$dbi->apply_filter(" .
1619
                "TABLE, COLUMN1, {in => INFILTER1, out => OUTFILTER1, end => ENDFILTER1}, " .
1620
                "COLUMN2, {in => INFILTER2, out => OUTFILTER2, end => ENDFILTER2}, ...)";
1621
    
1622
    # Apply filter
1623
    for (my $i = 0; $i < @cinfos; $i += 2) {
1624
        
1625
        # Column
1626
        my $column = $cinfos[$i];
1627
        if (ref $column eq 'ARRAY') {
cleanup
Yuki Kimoto authored on 2011-10-21
1628
            for my $c (@$column) {
updated pod
Yuki Kimoto authored on 2011-06-21
1629
                push @cinfos, $c, $cinfos[$i + 1];
1630
            }
1631
            next;
1632
        }
1633
        
1634
        # Filter infomation
1635
        my $finfo = $cinfos[$i + 1] || {};
1636
        croak "$usage (table: $table) " . _subname
1637
          unless  ref $finfo eq 'HASH';
cleanup
Yuki Kimoto authored on 2011-10-21
1638
        for my $ftype (keys %$finfo) {
updated pod
Yuki Kimoto authored on 2011-06-21
1639
            croak "$usage (table: $table) " . _subname
1640
              unless $ftype eq 'in' || $ftype eq 'out' || $ftype eq 'end'; 
1641
        }
1642
        
1643
        # Set filters
cleanup
Yuki Kimoto authored on 2011-10-21
1644
        for my $way (qw/in out end/) {
updated pod
Yuki Kimoto authored on 2011-06-21
1645
        
1646
            # Filter
1647
            my $filter = $finfo->{$way};
1648
            
1649
            # Filter state
1650
            my $state = !exists $finfo->{$way} ? 'not_exists'
1651
                      : !defined $filter        ? 'not_defined'
1652
                      : ref $filter eq 'CODE'   ? 'code'
1653
                      : 'name';
1654
            
1655
            # Filter is not exists
1656
            next if $state eq 'not_exists';
1657
            
1658
            # Check filter name
1659
            croak qq{Filter "$filter" is not registered } . _subname
1660
              if  $state eq 'name'
1661
               && ! exists $self->filters->{$filter};
1662
            
1663
            # Set filter
1664
            my $f = $state eq 'not_defined' ? undef
1665
                  : $state eq 'code'        ? $filter
1666
                  : $self->filters->{$filter};
1667
            $self->{filter}{$way}{$table}{$column} = $f;
1668
            $self->{filter}{$way}{$table}{"$table.$column"} = $f;
1669
            $self->{filter}{$way}{$table}{"${table}__$column"} = $f;
1670
            $self->{filter}{$way}{$table}{"${table}-$column"} = $f;
1671
        }
1672
    }
1673
    
1674
    return $self;
1675
}
1676

            
- update_param is DEPRECATED...
Yuki Kimoto authored on 2011-10-04
1677
# DEPRECATED!
1678
has 'data_source';
1679
has dbi_options => sub { {} };
1680
has filter_check  => 1;
1681
has 'reserved_word_quote';
- dbi_option attribute is re...
Yuki Kimoto authored on 2011-10-05
1682
has dbi_option => sub { {} };
1683
has default_dbi_option => sub {
1684
    warn "default_dbi_option is DEPRECATED! use default_option instead";
1685
    return shift->default_option;
1686
};
1687

            
- DBIx::Custom::QueryBuilder...
Yuki Kimoto authored on 2011-11-04
1688
# DEPRECATED
1689
sub tag_parse {
1690
   my $self = shift;
1691
   warn "tag_parse is DEPRECATED! use \$ENV{DBIX_CUSTOM_TAG_PARSE} " .
1692
         "environment variable";
1693
    if (@_) {
1694
        $self->{tag_parse} = $_[0];
1695
        return $self;
1696
    }
1697
    return $self->{tag_parse};
1698
}
1699

            
- method method of DBIx::Cus...
Yuki Kimoto authored on 2011-10-10
1700
# DEPRECATED!
1701
sub method {
1702
    warn "method is DEPRECATED! use helper instead";
1703
    return shift->helper(@_);
1704
}
- update_param is DEPRECATED...
Yuki Kimoto authored on 2011-10-04
1705

            
1706
# DEPRECATED!
1707
sub assign_param {
1708
    my $self = shift;
1709
    warn "assing_param is DEPRECATED! use assign_clause instead";
1710
    return $self->assign_clause(@_);
1711
}
1712

            
1713
# DEPRECATED
1714
sub update_param {
1715
    my ($self, $param, $opts) = @_;
1716
    
micro optimization
Yuki Kimoto authored on 2011-10-23
1717
    warn "update_param is DEPRECATED! use assign_clause instead.";
- update_param is DEPRECATED...
Yuki Kimoto authored on 2011-10-04
1718
    
1719
    # Create update parameter tag
1720
    my $tag = $self->assign_clause($param, $opts);
1721
    $tag = "set $tag" unless $opts->{no_set};
1722

            
1723
    return $tag;
1724
}
1725

            
updated pod
Yuki Kimoto authored on 2011-06-21
1726
# DEPRECATED!
1727
sub create_query {
1728
    warn "create_query is DEPRECATED! use query option of each method";
1729
    shift->_create_query(@_);
1730
}
1731

            
cleanup
Yuki Kimoto authored on 2011-06-13
1732
# DEPRECATED!
1733
sub apply_filter {
1734
    my $self = shift;
1735
    
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
1736
    warn "apply_filter is DEPRECATED!";
cleanup
Yuki Kimoto authored on 2011-06-13
1737
    return $self->_apply_filter(@_);
1738
}
1739

            
select_at is DEPRECATED! use...
Yuki Kimoto authored on 2011-06-08
1740
# DEPRECATED!
1741
sub select_at {
cleanup
Yuki Kimoto authored on 2011-10-21
1742
    my ($self, %opt) = @_;
select_at is DEPRECATED! use...
Yuki Kimoto authored on 2011-06-08
1743

            
cleanup
Yuki Kimoto authored on 2011-10-21
1744
    warn "select_at is DEPRECATED! use select method id option instead";
updated pod
Yuki Kimoto authored on 2011-06-08
1745

            
cleanup
Yuki Kimoto authored on 2011-10-21
1746
    # Options
cleanup
Yuki Kimoto authored on 2011-10-21
1747
    my $primary_keys = delete $opt{primary_key};
1748
    my $where = delete $opt{where};
1749
    my $param = delete $opt{param};
select_at is DEPRECATED! use...
Yuki Kimoto authored on 2011-06-08
1750
    
1751
    # Table
1752
    croak qq{"table" option must be specified } . _subname
cleanup
Yuki Kimoto authored on 2011-10-21
1753
      unless $opt{table};
1754
    my $table = ref $opt{table} ? $opt{table}->[-1] : $opt{table};
select_at is DEPRECATED! use...
Yuki Kimoto authored on 2011-06-08
1755
    
1756
    # Create where parameter
cleanup
Yuki Kimoto authored on 2011-10-21
1757
    my $where_param = $self->_id_to_param($where, $primary_keys);
select_at is DEPRECATED! use...
Yuki Kimoto authored on 2011-06-08
1758
    
cleanup
Yuki Kimoto authored on 2011-10-21
1759
    return $self->select(where => $where_param, %opt);
select_at is DEPRECATED! use...
Yuki Kimoto authored on 2011-06-08
1760
}
1761

            
delete_at is DEPRECATED! use...
Yuki Kimoto authored on 2011-06-08
1762
# DEPRECATED!
1763
sub delete_at {
cleanup
Yuki Kimoto authored on 2011-10-21
1764
    my ($self, %opt) = @_;
updated pod
Yuki Kimoto authored on 2011-06-08
1765

            
cleanup
Yuki Kimoto authored on 2011-10-21
1766
    warn "delete_at is DEPRECATED! use delete method id option instead";
delete_at is DEPRECATED! use...
Yuki Kimoto authored on 2011-06-08
1767
    
cleanup
Yuki Kimoto authored on 2011-10-21
1768
    # Options
cleanup
Yuki Kimoto authored on 2011-10-21
1769
    my $primary_keys = delete $opt{primary_key};
1770
    my $where = delete $opt{where};
delete_at is DEPRECATED! use...
Yuki Kimoto authored on 2011-06-08
1771
    
1772
    # Create where parameter
cleanup
Yuki Kimoto authored on 2011-10-21
1773
    my $where_param = $self->_id_to_param($where, $primary_keys);
delete_at is DEPRECATED! use...
Yuki Kimoto authored on 2011-06-08
1774
    
cleanup
Yuki Kimoto authored on 2011-10-21
1775
    return $self->delete(where => $where_param, %opt);
delete_at is DEPRECATED! use...
Yuki Kimoto authored on 2011-06-08
1776
}
1777

            
cleanup
Yuki Kimoto authored on 2011-06-08
1778
# DEPRECATED!
1779
sub update_at {
1780
    my $self = shift;
1781

            
cleanup
Yuki Kimoto authored on 2011-10-21
1782
    warn "update_at is DEPRECATED! use update method id option instead";
cleanup
Yuki Kimoto authored on 2011-06-08
1783
    
cleanup
Yuki Kimoto authored on 2011-10-21
1784
    # Options
cleanup
Yuki Kimoto authored on 2011-06-08
1785
    my $param;
1786
    $param = shift if @_ % 2;
cleanup
Yuki Kimoto authored on 2011-10-21
1787
    my %opt = @_;
1788
    my $primary_keys = delete $opt{primary_key};
1789
    my $where = delete $opt{where};
1790
    my $p = delete $opt{param} || {};
cleanup
Yuki Kimoto authored on 2011-06-08
1791
    $param  ||= $p;
1792
    
1793
    # Create where parameter
cleanup
Yuki Kimoto authored on 2011-10-21
1794
    my $where_param = $self->_id_to_param($where, $primary_keys);
cleanup
Yuki Kimoto authored on 2011-06-08
1795
    
cleanup
Yuki Kimoto authored on 2011-10-21
1796
    return $self->update(where => $where_param, param => $param, %opt);
cleanup
Yuki Kimoto authored on 2011-06-08
1797
}
1798

            
insert_at is DEPRECATED! add...
Yuki Kimoto authored on 2011-06-08
1799
# DEPRECATED!
1800
sub insert_at {
1801
    my $self = shift;
1802
    
cleanup
Yuki Kimoto authored on 2011-10-21
1803
    warn "insert_at is DEPRECATED! use insert method id option instead";
insert_at is DEPRECATED! add...
Yuki Kimoto authored on 2011-06-08
1804
    
cleanup
Yuki Kimoto authored on 2011-10-21
1805
    # Options
insert_at is DEPRECATED! add...
Yuki Kimoto authored on 2011-06-08
1806
    my $param;
1807
    $param = shift if @_ % 2;
cleanup
Yuki Kimoto authored on 2011-10-21
1808
    my %opt = @_;
1809
    my $primary_key = delete $opt{primary_key};
insert_at is DEPRECATED! add...
Yuki Kimoto authored on 2011-06-08
1810
    $primary_key = [$primary_key] unless ref $primary_key;
cleanup
Yuki Kimoto authored on 2011-10-21
1811
    my $where = delete $opt{where};
1812
    my $p = delete $opt{param} || {};
insert_at is DEPRECATED! add...
Yuki Kimoto authored on 2011-06-08
1813
    $param  ||= $p;
1814
    
1815
    # Create where parameter
cleanup
Yuki Kimoto authored on 2011-10-21
1816
    my $where_param = $self->_id_to_param($where, $primary_key);
insert_at is DEPRECATED! add...
Yuki Kimoto authored on 2011-06-08
1817
    $param = $self->merge_param($where_param, $param);
1818
    
cleanup
Yuki Kimoto authored on 2011-10-21
1819
    return $self->insert(param => $param, %opt);
insert_at is DEPRECATED! add...
Yuki Kimoto authored on 2011-06-08
1820
}
1821

            
added warnings
Yuki Kimoto authored on 2011-06-07
1822
# DEPRECATED!
1823
sub register_tag {
test cleanup
Yuki Kimoto authored on 2011-08-10
1824
    my $self = shift;
1825
    
added warnings
Yuki Kimoto authored on 2011-06-07
1826
    warn "register_tag is DEPRECATED!";
test cleanup
Yuki Kimoto authored on 2011-08-10
1827
    
1828
    # Merge tag
1829
    my $tags = ref $_[0] eq 'HASH' ? $_[0] : {@_};
1830
    $self->{_tags} = {%{$self->{_tags} || {}}, %$tags};
1831
    
1832
    return $self;
1833
}
1834

            
1835
# DEPRECATED!
1836
sub register_tag_processor {
1837
    my $self = shift;
1838
    warn "register_tag_processor is DEPRECATED!";
1839
    # Merge tag
1840
    my $tag_processors = ref $_[0] eq 'HASH' ? $_[0] : {@_};
1841
    $self->{_tags} = {%{$self->{_tags} || {}}, %{$tag_processors}};
1842
    return $self;
added warnings
Yuki Kimoto authored on 2011-06-07
1843
}
1844

            
cleanup
Yuki Kimoto authored on 2011-01-25
1845
# DEPRECATED!
cleanup
Yuki Kimoto authored on 2011-01-12
1846
sub default_bind_filter {
1847
    my $self = shift;
1848
    
cleanup
Yuki Kimoto authored on 2011-06-13
1849
    warn "default_bind_filter is DEPRECATED!";
added warnings
Yuki Kimoto authored on 2011-06-07
1850
    
cleanup
Yuki Kimoto authored on 2011-01-12
1851
    if (@_) {
1852
        my $fname = $_[0];
1853
        
1854
        if (@_ && !$fname) {
1855
            $self->{default_out_filter} = undef;
1856
        }
1857
        else {
many changed
Yuki Kimoto authored on 2011-01-23
1858
            croak qq{Filter "$fname" is not registered}
cleanup
Yuki Kimoto authored on 2011-01-12
1859
              unless exists $self->filters->{$fname};
1860
        
1861
            $self->{default_out_filter} = $self->filters->{$fname};
1862
        }
1863
        return $self;
1864
    }
1865
    
1866
    return $self->{default_out_filter};
1867
}
1868

            
cleanup
Yuki Kimoto authored on 2011-01-25
1869
# DEPRECATED!
cleanup
Yuki Kimoto authored on 2011-01-12
1870
sub default_fetch_filter {
1871
    my $self = shift;
added warnings
Yuki Kimoto authored on 2011-06-07
1872

            
cleanup
Yuki Kimoto authored on 2011-06-13
1873
    warn "default_fetch_filter is DEPRECATED!";
cleanup
Yuki Kimoto authored on 2011-01-12
1874
    
1875
    if (@_) {
many changed
Yuki Kimoto authored on 2011-01-23
1876
        my $fname = $_[0];
1877

            
cleanup
Yuki Kimoto authored on 2011-01-12
1878
        if (@_ && !$fname) {
1879
            $self->{default_in_filter} = undef;
1880
        }
1881
        else {
many changed
Yuki Kimoto authored on 2011-01-23
1882
            croak qq{Filter "$fname" is not registered}
cleanup
Yuki Kimoto authored on 2011-01-12
1883
              unless exists $self->filters->{$fname};
1884
        
1885
            $self->{default_in_filter} = $self->filters->{$fname};
1886
        }
1887
        
1888
        return $self;
1889
    }
1890
    
many changed
Yuki Kimoto authored on 2011-01-23
1891
    return $self->{default_in_filter};
cleanup
Yuki Kimoto authored on 2011-01-12
1892
}
1893

            
- update_param is DEPRECATED...
Yuki Kimoto authored on 2011-10-04
1894
# DEPRECATED!
1895
sub insert_param {
1896
    my $self = shift;
1897
    warn "insert_param is DEPRECATED! use values_clause instead";
1898
    return $self->values_clause(@_);
1899
}
1900

            
- renamed update_param to up...
Yuki Kimoto authored on 2011-03-30
1901
# DEPRECATED!
- update_param_tag is DEPREC...
Yuki Kimoto authored on 2011-06-07
1902
sub insert_param_tag {
1903
    warn "insert_param_tag is DEPRECATED! " .
1904
         "use insert_param instead!";
1905
    return shift->insert_param(@_);
- renamed update_param to up...
Yuki Kimoto authored on 2011-03-30
1906
}
1907

            
1908
# DEPRECATED!
- update_param_tag is DEPREC...
Yuki Kimoto authored on 2011-06-07
1909
sub update_param_tag {
fixed DEPRECATED message bug
Yuki Kimoto authored on 2011-06-10
1910
    warn "update_param_tag is DEPRECATED! " .
- update_param_tag is DEPREC...
Yuki Kimoto authored on 2011-06-07
1911
         "use update_param instead";
1912
    return shift->update_param(@_);
- renamed update_param to up...
Yuki Kimoto authored on 2011-03-30
1913
}
cleanup
Yuki Kimoto authored on 2011-03-08
1914
# DEPRECATED!
1915
sub _push_relation {
1916
    my ($self, $sql, $tables, $relation, $need_where) = @_;
1917
    
1918
    if (keys %{$relation || {}}) {
micro optimization
Yuki Kimoto authored on 2011-09-30
1919
        $$sql .= $need_where ? 'where ' : 'and ';
cleanup
Yuki Kimoto authored on 2011-10-21
1920
        for my $rcolumn (keys %$relation) {
cleanup
Yuki Kimoto authored on 2011-03-08
1921
            my $table1 = (split (/\./, $rcolumn))[0];
1922
            my $table2 = (split (/\./, $relation->{$rcolumn}))[0];
1923
            push @$tables, ($table1, $table2);
micro optimization
Yuki Kimoto authored on 2011-09-30
1924
            $$sql .= "$rcolumn = " . $relation->{$rcolumn} .  'and ';
cleanup
Yuki Kimoto authored on 2011-03-08
1925
        }
1926
    }
micro optimization
Yuki Kimoto authored on 2011-09-30
1927
    $$sql =~ s/and $/ /;
cleanup
Yuki Kimoto authored on 2011-03-08
1928
}
1929

            
1930
# DEPRECATED!
1931
sub _add_relation_table {
cleanup
Yuki Kimoto authored on 2011-03-09
1932
    my ($self, $tables, $relation) = @_;
cleanup
Yuki Kimoto authored on 2011-03-08
1933
    
1934
    if (keys %{$relation || {}}) {
cleanup
Yuki Kimoto authored on 2011-10-21
1935
        for my $rcolumn (keys %$relation) {
cleanup
Yuki Kimoto authored on 2011-03-08
1936
            my $table1 = (split (/\./, $rcolumn))[0];
1937
            my $table2 = (split (/\./, $relation->{$rcolumn}))[0];
1938
            my $table1_exists;
1939
            my $table2_exists;
cleanup
Yuki Kimoto authored on 2011-10-21
1940
            for my $table (@$tables) {
cleanup
Yuki Kimoto authored on 2011-03-08
1941
                $table1_exists = 1 if $table eq $table1;
1942
                $table2_exists = 1 if $table eq $table2;
1943
            }
1944
            unshift @$tables, $table1 unless $table1_exists;
1945
            unshift @$tables, $table2 unless $table2_exists;
1946
        }
1947
    }
1948
}
1949

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

            
removed reconnect method
yuki-kimoto authored on 2010-05-28
1952
=head1 NAME
1953

            
moved DBIx::Custom::Guide to...
Yuki Kimoto authored on 2011-10-22
1954
DBIx::Custom - DBI extension to execute insert, update, delete, and select easily
removed reconnect method
yuki-kimoto authored on 2010-05-28
1955

            
fix heading typos
Terrence Brannon authored on 2011-08-17
1956
=head1 SYNOPSIS
cleanup
yuki-kimoto authored on 2010-08-05
1957

            
renamed build_query to creat...
yuki-kimoto authored on 2010-08-06
1958
    use DBIx::Custom;
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
1959
    
1960
    # Connect
1961
    my $dbi = DBIx::Custom->connect(
data_source is DEPRECATED! I...
Yuki Kimoto authored on 2011-06-06
1962
        dsn => "dbi:mysql:database=dbname",
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
1963
        user => 'ken',
1964
        password => '!LFKD%$&',
- dbi_option attribute is re...
Yuki Kimoto authored on 2011-10-05
1965
        option => {mysql_enable_utf8 => 1}
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
1966
    );
cleanup
yuki-kimoto authored on 2010-08-05
1967

            
removed reconnect method
yuki-kimoto authored on 2010-05-28
1968
    # Insert 
updated pod
Yuki Kimoto authored on 2011-06-21
1969
    $dbi->insert({title => 'Perl', author => 'Ken'}, table  => 'book');
removed reconnect method
yuki-kimoto authored on 2010-05-28
1970
    
1971
    # Update 
updated pod
Yuki Kimoto authored on 2011-06-21
1972
    $dbi->update({title => 'Perl', author => 'Ken'}, table  => 'book',
1973
      where  => {id => 5});
removed reconnect method
yuki-kimoto authored on 2010-05-28
1974
    
1975
    # Delete
updated pod
Yuki Kimoto authored on 2011-06-21
1976
    $dbi->delete(table  => 'book', where => {author => 'Ken'});
cleanup
yuki-kimoto authored on 2010-08-05
1977

            
removed reconnect method
yuki-kimoto authored on 2010-05-28
1978
    # Select
updated pod
Yuki Kimoto authored on 2011-06-21
1979
    my $result = $dbi->select(table  => 'book',
1980
      column => ['title', 'author'], where  => {author => 'Ken'});
cleanup
yuki-kimoto authored on 2010-08-05
1981

            
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
1982
    # Select, more complex
1983
    my $result = $dbi->select(
1984
        table  => 'book',
1985
        column => [
cleanup
Yuki Kimoto authored on 2011-06-13
1986
            {book => [qw/title author/]},
1987
            {company => ['name']}
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
1988
        ],
1989
        where  => {'book.author' => 'Ken'},
1990
        join => ['left outer join company on book.company_id = company.id'],
1991
        append => 'order by id limit 5'
removed reconnect method
yuki-kimoto authored on 2010-05-28
1992
    );
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
1993
    
removed register_format()
yuki-kimoto authored on 2010-05-26
1994
    # Fetch
1995
    while (my $row = $result->fetch) {
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
1996
        
removed register_format()
yuki-kimoto authored on 2010-05-26
1997
    }
1998
    
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
1999
    # Fetch as hash
removed register_format()
yuki-kimoto authored on 2010-05-26
2000
    while (my $row = $result->fetch_hash) {
2001
        
2002
    }
2003
    
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
2004
    # Execute SQL with parameter.
2005
    $dbi->execute(
- update_param_tag is DEPREC...
Yuki Kimoto authored on 2011-06-07
2006
        "select id from book where author = :author and title like :title",
updated pod
Yuki Kimoto authored on 2011-06-21
2007
        {author => 'ken', title => '%Perl%'}
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
2008
    );
2009
    
fix heading typos
Terrence Brannon authored on 2011-08-17
2010
=head1 DESCRIPTION
removed reconnect method
yuki-kimoto authored on 2010-05-28
2011

            
cleanup
Yuki Kimoto authored on 2011-07-29
2012
L<DBIx::Custom> is L<DBI> wrapper module to execute SQL easily.
updated pod
Yuki Kimoto authored on 2011-06-21
2013
This module have the following features.
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
2014

            
updated pod
Yuki Kimoto authored on 2011-06-21
2015
=over 4
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
2016

            
cleanup
Yuki Kimoto authored on 2011-07-29
2017
=item *
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
2018

            
cleanup
Yuki Kimoto authored on 2011-07-29
2019
Execute C<insert>, C<update>, C<delete>, or C<select> statement easily
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
2020

            
cleanup
Yuki Kimoto authored on 2011-07-29
2021
=item *
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
2022

            
cleanup
Yuki Kimoto authored on 2011-07-29
2023
Create C<where> clause flexibly
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
2024

            
cleanup
Yuki Kimoto authored on 2011-07-29
2025
=item *
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
2026

            
micro optimization
Yuki Kimoto authored on 2011-07-30
2027
Named place holder support
2028

            
2029
=item *
2030

            
cleanup
Yuki Kimoto authored on 2011-07-29
2031
Model support
2032

            
2033
=item *
2034

            
2035
Connection manager support
2036

            
2037
=item *
pod fix
Yuki Kimoto authored on 2011-01-21
2038

            
cleanup
Yuki Kimoto authored on 2011-07-30
2039
Choice your favorite relational database management system,
cleanup
Yuki Kimoto authored on 2011-07-29
2040
C<MySQL>, C<SQLite>, C<PostgreSQL>, C<Oracle>,
2041
C<Microsoft SQL Server>, C<Microsoft Access>, C<DB2> or anything, 
2042

            
2043
=item *
2044

            
- removed EXPERIMENTAL flag ...
Yuki Kimoto authored on 2011-09-12
2045
Filtering by data type or column name
cleanup
Yuki Kimoto authored on 2011-07-29
2046

            
2047
=item *
2048

            
- removed EXPERIMENTAL flag ...
Yuki Kimoto authored on 2011-09-12
2049
Create C<order by> clause flexibly
cleanup
Yuki Kimoto authored on 2011-07-29
2050

            
2051
=back
pod fix
Yuki Kimoto authored on 2011-01-21
2052

            
fix heading typos
Terrence Brannon authored on 2011-08-17
2053
=head1 DOCUMENTATION
pod fix
Yuki Kimoto authored on 2011-01-21
2054

            
cleanup
Yuki Kimoto authored on 2011-07-29
2055
L<DBIx::Custom::Guide> - How to use L<DBIx::Custom>
pod fix
Yuki Kimoto authored on 2011-01-21
2056

            
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
2057
L<DBIx::Custom Wiki|https://github.com/yuki-kimoto/DBIx-Custom/wiki>
cleanup
Yuki Kimoto authored on 2011-07-29
2058
- Theare are various examples.
2059

            
micro optimization
Yuki Kimoto authored on 2011-07-30
2060
Module documentations - 
cleanup
Yuki Kimoto authored on 2011-07-29
2061
L<DBIx::Custom::Result>,
2062
L<DBIx::Custom::Query>,
2063
L<DBIx::Custom::Where>,
2064
L<DBIx::Custom::Model>,
2065
L<DBIx::Custom::Order>
updated document
yuki-kimoto authored on 2010-08-08
2066

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

            
- removed DEPRECATED DBIx::C...
Yuki Kimoto authored on 2011-04-11
2069
=head2 C<connector>
- removed EXPERIMENTAL Prefo...
Yuki Kimoto authored on 2011-04-04
2070

            
2071
    my $connector = $dbi->connector;
micro optimization
Yuki Kimoto authored on 2011-07-30
2072
    $dbi = $dbi->connector($connector);
- removed EXPERIMENTAL Prefo...
Yuki Kimoto authored on 2011-04-04
2073

            
micro optimization
Yuki Kimoto authored on 2011-07-30
2074
Connection manager object. if C<connector> is set, you can get C<dbh>
2075
through connection manager. Conection manager object must have C<dbh> mehtod.
- removed EXPERIMENTAL Prefo...
Yuki Kimoto authored on 2011-04-04
2076

            
2077
This is L<DBIx::Connector> example. Please pass
- dbi_option attribute is re...
Yuki Kimoto authored on 2011-10-05
2078
C<default_option> to L<DBIx::Connector> C<new> method.
- removed EXPERIMENTAL Prefo...
Yuki Kimoto authored on 2011-04-04
2079

            
2080
    my $connector = DBIx::Connector->new(
cleanup
Yuki Kimoto authored on 2011-08-16
2081
        "dbi:mysql:database=$database",
2082
        $user,
2083
        $password,
- dbi_option attribute is re...
Yuki Kimoto authored on 2011-10-05
2084
        DBIx::Custom->new->default_option
- removed EXPERIMENTAL Prefo...
Yuki Kimoto authored on 2011-04-04
2085
    );
2086
    
updated pod
Yuki Kimoto authored on 2011-06-21
2087
    my $dbi = DBIx::Custom->connect(connector => $connector);
- removed EXPERIMENTAL Prefo...
Yuki Kimoto authored on 2011-04-04
2088

            
cleanup
Yuki Kimoto authored on 2011-08-16
2089
If C<connector> is set to 1 when connect method is called,
2090
L<DBIx::Connector> is automatically set to C<connector>
2091

            
2092
    my $dbi = DBIx::Custom->connect(
2093
      dsn => $dsn, user => $user, password => $password, connector => 1);
2094
    
2095
    my $connector = $dbi->connector; # DBIx::Connector
2096

            
2097
Note that L<DBIx::Connector> must be installed.
2098

            
data_source is DEPRECATED! I...
Yuki Kimoto authored on 2011-06-06
2099
=head2 C<dsn>
2100

            
2101
    my $dsn = $dbi->dsn;
reserved_word_quote is DEPRE...
Yuki Kimoto authored on 2011-06-17
2102
    $dbi = $dbi->dsn("DBI:mysql:database=dbname");
packaging one directory
yuki-kimoto authored on 2009-11-16
2103

            
updated pod
Yuki Kimoto authored on 2011-06-21
2104
Data source name, used when C<connect> method is executed.
removed DESTROY method(not b...
yuki-kimoto authored on 2010-07-18
2105

            
- dbi_option attribute is re...
Yuki Kimoto authored on 2011-10-05
2106
=head2 C<default_option>
add default_dbi_option()
Yuki Kimoto authored on 2011-02-19
2107

            
- dbi_option attribute is re...
Yuki Kimoto authored on 2011-10-05
2108
    my $default_option = $dbi->default_option;
2109
    $dbi = $dbi->default_option($default_option);
add default_dbi_option()
Yuki Kimoto authored on 2011-02-19
2110

            
updated pod
Yuki Kimoto authored on 2011-06-21
2111
L<DBI> default option, used when C<connect> method is executed,
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
2112
default to the following values.
add default_dbi_option()
Yuki Kimoto authored on 2011-02-19
2113

            
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
2114
    {
2115
        RaiseError => 1,
2116
        PrintError => 0,
2117
        AutoCommit => 1,
2118
    }
packaging one directory
yuki-kimoto authored on 2009-11-16
2119

            
removed EXPERIMETNAL flag fr...
Yuki Kimoto authored on 2011-10-19
2120
=head2 C<exclude_table>
2121

            
2122
    my $exclude_table = $dbi->exclude_table;
2123
    $dbi = $dbi->exclude_table(qr/pg_/);
2124

            
2125
Excluded table regex.
2126
C<each_column>, C<each_table>, C<type_rule>,
2127
and C<setup_model> methods ignore matching tables.
2128

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

            
cleanup
yuki-kimoto authored on 2010-10-17
2131
    my $filters = $dbi->filters;
reserved_word_quote is DEPRE...
Yuki Kimoto authored on 2011-06-17
2132
    $dbi = $dbi->filters(\%filters);
packaging one directory
yuki-kimoto authored on 2009-11-16
2133

            
updated pod
Yuki Kimoto authored on 2011-06-21
2134
Filters, registered by C<register_filter> method.
add models() attribute
Yuki Kimoto authored on 2011-02-21
2135

            
- removed EXPERIMENTAL statu...
Yuki Kimoto authored on 2011-07-26
2136
=head2 C<last_sql>
added EXPERIMENTAL last_sql ...
Yuki Kimoto authored on 2011-07-11
2137

            
2138
    my $last_sql = $dbi->last_sql;
2139
    $dbi = $dbi->last_sql($last_sql);
2140

            
2141
Get last successed SQL executed by C<execute> method.
2142

            
- id option work if id count...
Yuki Kimoto authored on 2011-11-03
2143
=head2 C<now>
- insert timestamp option is...
Yuki Kimoto authored on 2011-10-25
2144

            
2145
    my $now = $dbi->now;
2146
    $dbi = $dbi->now($now);
2147

            
- id option work if id count...
Yuki Kimoto authored on 2011-11-03
2148
Code reference which return current time, default to the following code reference.
- insert timestamp option is...
Yuki Kimoto authored on 2011-10-25
2149

            
2150
    sub {
2151
        my ($sec, $min, $hour, $mday, $mon, $year) = localtime;
2152
        $mon++;
2153
        $year += 1900;
2154
        return sprintf("%04d-%02d-%02d %02d:%02d:%02d");
2155
    }
2156

            
- id option work if id count...
Yuki Kimoto authored on 2011-11-03
2157
This return the time like C<2011-10-14 05:05:27>.
2158

            
2159
This is used by C<insert> method's C<created_at> option and C<updated_at> option,
2160
and C<update> method's C<updated_at> option.
- insert timestamp option is...
Yuki Kimoto authored on 2011-10-25
2161

            
- removed DEPRECATED DBIx::C...
Yuki Kimoto authored on 2011-04-11
2162
=head2 C<models>
add models() attribute
Yuki Kimoto authored on 2011-02-21
2163

            
2164
    my $models = $dbi->models;
reserved_word_quote is DEPRE...
Yuki Kimoto authored on 2011-06-17
2165
    $dbi = $dbi->models(\%models);
add models() attribute
Yuki Kimoto authored on 2011-02-21
2166

            
updated pod
Yuki Kimoto authored on 2011-06-21
2167
Models, included by C<include_model> method.
add models() attribute
Yuki Kimoto authored on 2011-02-21
2168

            
removed EXPERIMETNAL flag fr...
Yuki Kimoto authored on 2011-10-19
2169
=head2 C<option>
2170

            
2171
    my $option = $dbi->option;
2172
    $dbi = $dbi->option($option);
2173

            
2174
L<DBI> option, used when C<connect> method is executed.
2175
Each value in option override the value of C<default_option>.
2176

            
cleanup
yuki-kimoto authored on 2010-10-17
2177
=head2 C<password>
2178

            
2179
    my $password = $dbi->password;
reserved_word_quote is DEPRE...
Yuki Kimoto authored on 2011-06-17
2180
    $dbi = $dbi->password('lkj&le`@s');
cleanup
yuki-kimoto authored on 2010-10-17
2181

            
updated pod
Yuki Kimoto authored on 2011-06-21
2182
Password, used when C<connect> method is executed.
update document
yuki-kimoto authored on 2010-01-30
2183

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

            
test cleanup
Yuki Kimoto authored on 2011-08-10
2186
    my $builder = $dbi->query_builder;
added commit method
yuki-kimoto authored on 2010-05-27
2187

            
test cleanup
Yuki Kimoto authored on 2011-08-10
2188
Creat query builder. This is L<DBIx::Custom::QueryBuilder>.
cleanup
yuki-kimoto authored on 2010-08-05
2189

            
reserved_word_quote is DEPRE...
Yuki Kimoto authored on 2011-06-17
2190
=head2 C<quote>
added EXPERIMENTAL reserved_...
Yuki Kimoto authored on 2011-03-30
2191

            
reserved_word_quote is DEPRE...
Yuki Kimoto authored on 2011-06-17
2192
     my quote = $dbi->quote;
2193
     $dbi = $dbi->quote('"');
added EXPERIMENTAL reserved_...
Yuki Kimoto authored on 2011-03-30
2194

            
DBIx::Custom::Model type att...
Yuki Kimoto authored on 2011-06-17
2195
Reserved word quote.
2196
Default to double quote '"' except for mysql.
2197
In mysql, default to back quote '`'
added EXPERIMENTAL reserved_...
Yuki Kimoto authored on 2011-03-30
2198

            
cleanup
Yuki Kimoto authored on 2011-07-30
2199
You can set quote pair.
2200

            
2201
    $dbi->quote('[]');
2202

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

            
cleanup
yuki-kimoto authored on 2010-10-17
2205
    my $result_class = $dbi->result_class;
reserved_word_quote is DEPRE...
Yuki Kimoto authored on 2011-06-17
2206
    $dbi = $dbi->result_class('DBIx::Custom::Result');
cleanup
yuki-kimoto authored on 2010-08-05
2207

            
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
2208
Result class, default to L<DBIx::Custom::Result>.
cleanup
yuki-kimoto authored on 2010-08-05
2209

            
removed EXPERIMETNAL flag fr...
Yuki Kimoto authored on 2011-03-25
2210
=head2 C<safety_character>
update pod
Yuki Kimoto authored on 2011-01-27
2211

            
fixed pod
Yuki Kimoto authored on 2011-09-27
2212
    my $safety_character = $dbi->safety_character;
2213
    $dbi = $dbi->safety_character($character);
update pod
Yuki Kimoto authored on 2011-01-27
2214

            
update pod
Yuki Kimoto authored on 2011-03-13
2215
Regex of safety character for table and column name, default to '\w'.
cleanup
Yuki Kimoto authored on 2011-03-10
2216
Note that you don't have to specify like '[\w]'.
update pod
Yuki Kimoto authored on 2011-01-27
2217

            
cleanup test
Yuki Kimoto authored on 2011-08-10
2218
=head2 C<separator>
2219

            
fixed pod
Yuki Kimoto authored on 2011-09-27
2220
    my $separator = $dbi->separator;
2221
    $dbi = $dbi->separator('-');
improved join clause parsing
Yuki Kimoto authored on 2011-09-27
2222

            
2223
Separator which join table name and column name.
2224
This have effect to C<column> and C<mycolumn> method,
2225
and C<select> method's column option.
cleanup test
Yuki Kimoto authored on 2011-08-10
2226

            
improved join clause parsing
Yuki Kimoto authored on 2011-09-27
2227
Default to C<.>.
cleanup test
Yuki Kimoto authored on 2011-08-10
2228

            
added tag_parse attribute
Yuki Kimoto authored on 2011-06-28
2229
=head2 C<tag_parse>
2230

            
2231
    my $tag_parse = $dbi->tag_parse(0);
2232
    $dbi = $dbi->tag_parse;
2233

            
2234
Enable DEPRECATED tag parsing functionality, default to 1.
2235
If you want to disable tag parsing functionality, set to 0.
2236

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

            
cleanup
yuki-kimoto authored on 2010-10-17
2239
    my $user = $dbi->user;
reserved_word_quote is DEPRE...
Yuki Kimoto authored on 2011-06-17
2240
    $dbi = $dbi->user('Ken');
cleanup
yuki-kimoto authored on 2010-08-05
2241

            
updated pod
Yuki Kimoto authored on 2011-06-21
2242
User name, used when C<connect> method is executed.
update pod
Yuki Kimoto authored on 2011-01-27
2243

            
- removed EXPERIMENTAL flag ...
Yuki Kimoto authored on 2011-09-12
2244
=head2 C<user_column_info>
- added EXPERIMENTAL get_col...
Yuki Kimoto authored on 2011-08-16
2245

            
2246
    my $user_column_info = $dbi->user_column_info;
2247
    $dbi = $dbi->user_column_info($user_column_info);
2248

            
improved join clause parsing
Yuki Kimoto authored on 2011-09-30
2249
You can set the date like the following one.
- added EXPERIMENTAL get_col...
Yuki Kimoto authored on 2011-08-16
2250

            
2251
    [
2252
        {table => 'book', column => 'title', info => {...}},
2253
        {table => 'author', column => 'name', info => {...}}
2254
    ]
2255

            
improved join clause parsing
Yuki Kimoto authored on 2011-09-30
2256
Usually, you set return value of C<get_column_info>.
- added EXPERIMENTAL get_col...
Yuki Kimoto authored on 2011-08-16
2257

            
2258
    my $user_column_info
2259
      = $dbi->get_column_info(exclude_table => qr/^system/);
2260
    $dbi->user_column_info($user_column_info);
2261

            
2262
If C<user_column_info> is set, C<each_column> use C<user_column_info>
- removed EXPERIMENTAL flag ...
Yuki Kimoto authored on 2011-09-12
2263
to find column info. this is very fast.
- added EXPERIMENTAL get_col...
Yuki Kimoto authored on 2011-08-16
2264

            
- removed EXPERIMENTAL flag ...
Yuki Kimoto authored on 2011-09-12
2265
=head2 C<user_table_info>
added test
Yuki Kimoto authored on 2011-08-16
2266

            
2267
    my $user_table_info = $dbi->user_table_info;
2268
    $dbi = $dbi->user_table_info($user_table_info);
2269

            
2270
You can set the following data.
2271

            
2272
    [
2273
        {table => 'book', info => {...}},
2274
        {table => 'author', info => {...}}
2275
    ]
2276

            
2277
Usually, you can set return value of C<get_table_info>.
2278

            
2279
    my $user_table_info = $dbi->get_table_info(exclude => qr/^system/);
2280
    $dbi->user_table_info($user_table_info);
2281

            
2282
If C<user_table_info> is set, C<each_table> use C<user_table_info>
2283
to find table info.
2284

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

            
cleanup
yuki-kimoto authored on 2010-10-17
2287
L<DBIx::Custom> inherits all methods from L<Object::Simple>
cleanup
Yuki Kimoto authored on 2011-03-10
2288
and use all methods of L<DBI>
cleanup
yuki-kimoto authored on 2010-10-17
2289
and implements the following new ones.
added check_filter attribute
yuki-kimoto authored on 2010-08-08
2290

            
- removed EXPERIMENTAL flag ...
Yuki Kimoto authored on 2011-09-12
2291
=head2 C<available_datatype>
changed type_rule arguments ...
Yuki Kimoto authored on 2011-06-12
2292

            
added EXPERIMENTAL DBIx::Cus...
Yuki Kimoto authored on 2011-08-09
2293
    print $dbi->available_datatype;
changed type_rule arguments ...
Yuki Kimoto authored on 2011-06-12
2294

            
added EXPERIMENTAL available...
Yuki Kimoto authored on 2011-06-14
2295
Get available data types. You can use these data types
updated pod
Yuki Kimoto authored on 2011-06-21
2296
in C<type rule>'s C<from1> and C<from2> section.
added EXPERIMENTAL available...
Yuki Kimoto authored on 2011-06-14
2297

            
- removed EXPERIMENTAL flag ...
Yuki Kimoto authored on 2011-09-12
2298
=head2 C<available_typename>
added EXPERIMENTAL available...
Yuki Kimoto authored on 2011-06-14
2299

            
added EXPERIMENTAL DBIx::Cus...
Yuki Kimoto authored on 2011-08-09
2300
    print $dbi->available_typename;
added EXPERIMENTAL available...
Yuki Kimoto authored on 2011-06-14
2301

            
2302
Get available type names. You can use these type names in
updated pod
Yuki Kimoto authored on 2011-06-21
2303
C<type_rule>'s C<into1> and C<into2> section.
changed type_rule arguments ...
Yuki Kimoto authored on 2011-06-12
2304

            
- update_param is DEPRECATED...
Yuki Kimoto authored on 2011-10-04
2305
=head2 C<assign_clause>
added EXPERIMENTAL assign_ta...
Yuki Kimoto authored on 2011-04-26
2306

            
- update_param is DEPRECATED...
Yuki Kimoto authored on 2011-10-04
2307
    my $assign_clause = $dbi->assign_clause({title => 'a', age => 2});
added EXPERIMENTAL assign_ta...
Yuki Kimoto authored on 2011-04-26
2308

            
- update_param is DEPRECATED...
Yuki Kimoto authored on 2011-10-04
2309
Create assign clause
added EXPERIMENTAL assign_ta...
Yuki Kimoto authored on 2011-04-26
2310

            
- update_param_tag is DEPREC...
Yuki Kimoto authored on 2011-06-07
2311
    title = :title, author = :author
added EXPERIMENTAL assign_ta...
Yuki Kimoto authored on 2011-04-26
2312

            
- update_param is DEPRECATED...
Yuki Kimoto authored on 2011-10-04
2313
This is used to create update clause.
2314

            
2315
    "update book set " . $dbi->assign_clause({title => 'a', age => 2});
added EXPERIMENTAL assign_ta...
Yuki Kimoto authored on 2011-04-26
2316

            
added EXPERIMENTAL parameter...
Yuki Kimoto authored on 2011-07-29
2317
=head2 C<column>
- select() EXPERIMETNAL colu...
Yuki Kimoto authored on 2011-06-08
2318

            
cleanup
Yuki Kimoto authored on 2011-06-13
2319
    my $column = $dbi->column(book => ['author', 'title']);
- select() EXPERIMETNAL colu...
Yuki Kimoto authored on 2011-06-08
2320

            
2321
Create column clause. The follwoing column clause is created.
2322

            
2323
    book.author as "book.author",
2324
    book.title as "book.title"
2325

            
cleanup test
Yuki Kimoto authored on 2011-08-10
2326
You can change separator by C<separator> attribute.
- select() EXPERIMETNAL colu...
Yuki Kimoto authored on 2011-06-08
2327

            
cleanup
Yuki Kimoto authored on 2011-06-13
2328
    # Separator is hyphen
2329
    $dbi->separator('-');
2330
    
2331
    book.author as "book-author",
2332
    book.title as "book-title"
2333
    
removed DBIx::Custom commit ...
yuki-kimoto authored on 2010-07-14
2334
=head2 C<connect>
packaging one directory
yuki-kimoto authored on 2009-11-16
2335

            
update pod
Yuki Kimoto authored on 2011-03-13
2336
    my $dbi = DBIx::Custom->connect(
data_source is DEPRECATED! I...
Yuki Kimoto authored on 2011-06-06
2337
        dsn => "dbi:mysql:database=dbname",
update pod
Yuki Kimoto authored on 2011-03-13
2338
        user => 'ken',
2339
        password => '!LFKD%$&',
- dbi_option attribute is re...
Yuki Kimoto authored on 2011-10-05
2340
        option => {mysql_enable_utf8 => 1}
update pod
Yuki Kimoto authored on 2011-03-13
2341
    );
2342

            
2343
Connect to the database and create a new L<DBIx::Custom> object.
bind_filter argument is chan...
yuki-kimoto authored on 2009-11-19
2344

            
renamed build_query to creat...
yuki-kimoto authored on 2010-08-06
2345
L<DBIx::Custom> is a wrapper of L<DBI>.
cleanup
yuki-kimoto authored on 2010-08-09
2346
C<AutoCommit> and C<RaiseError> options are true, 
update pod
Yuki Kimoto authored on 2011-03-13
2347
and C<PrintError> option is false by default.
packaging one directory
yuki-kimoto authored on 2009-11-16
2348

            
- removed EXPERIMENTAL flag ...
Yuki Kimoto authored on 2011-09-12
2349
=head2 C<count>
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-08-20
2350

            
fixed id option bug when col...
Yuki Kimoto authored on 2011-10-10
2351
    my $count = $dbi->count(table => 'book');
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-08-20
2352

            
2353
Get rows count.
2354

            
2355
Options is same as C<select> method's ones.
2356

            
2357
=head2 C<create_model>
removed EXPERIMETNAL flag fr...
Yuki Kimoto authored on 2011-03-25
2358

            
adeed EXPERIMENTAL DBIx::Cus...
Yuki Kimoto authored on 2011-03-29
2359
    my $model = $dbi->create_model(
removed EXPERIMETNAL flag fr...
Yuki Kimoto authored on 2011-03-25
2360
        table => 'book',
2361
        primary_key => 'id',
2362
        join => [
2363
            'inner join company on book.comparny_id = company.id'
2364
        ],
2365
    );
2366

            
2367
Create L<DBIx::Custom::Model> object and initialize model.
updated pod
Yuki Kimoto authored on 2011-06-21
2368
the module is also used from C<model> method.
removed EXPERIMETNAL flag fr...
Yuki Kimoto authored on 2011-03-25
2369

            
2370
   $dbi->model('book')->select(...);
2371

            
EXPERIMETAL fork safety impl...
Yuki Kimoto authored on 2011-03-12
2372
=head2 C<dbh>
2373

            
2374
    my $dbh = $dbi->dbh;
2375

            
- removed EXPERIMENTAL Prefo...
Yuki Kimoto authored on 2011-04-04
2376
Get L<DBI> database handle. if C<connector> is set, you can get
updated pod
Yuki Kimoto authored on 2011-06-21
2377
database handle through C<connector> object.
removed EXPERIMETNAL flag fr...
Yuki Kimoto authored on 2011-03-25
2378

            
added EXPERIMENTAL find_tabl...
Yuki Kimoto authored on 2011-08-16
2379
=head2 C<delete>
2380

            
2381
    $dbi->delete(table => 'book', where => {title => 'Perl'});
2382

            
2383
Execute delete statement.
2384

            
2385
The following opitons are available.
2386

            
cleanup
Yuki Kimoto authored on 2011-10-20
2387
B<OPTIONS>
added EXPERIMENTAL find_tabl...
Yuki Kimoto authored on 2011-08-16
2388

            
cleanup
Yuki Kimoto authored on 2011-10-20
2389
C<delete> method use all of C<execute> method's options,
2390
and use the following new ones.
added EXPERIMENTAL find_tabl...
Yuki Kimoto authored on 2011-08-16
2391

            
cleanup
Yuki Kimoto authored on 2011-10-20
2392
=over 4
added EXPERIMENTAL find_tabl...
Yuki Kimoto authored on 2011-08-16
2393

            
2394
=item C<id>
2395

            
2396
    id => 4
2397
    id => [4, 5]
2398

            
2399
ID corresponding to C<primary_key>.
2400
You can delete rows by C<id> and C<primary_key>.
2401

            
2402
    $dbi->delete(
fixed pod
Yuki Kimoto authored on 2011-10-20
2403
        primary_key => ['id1', 'id2'],
added EXPERIMENTAL find_tabl...
Yuki Kimoto authored on 2011-08-16
2404
        id => [4, 5],
2405
        table => 'book',
2406
    );
2407

            
2408
The above is same as the followin one.
2409

            
2410
    $dbi->delete(where => {id1 => 4, id2 => 5}, table => 'book');
2411

            
2412
=item C<prefix>
2413

            
2414
    prefix => 'some'
2415

            
2416
prefix before table name section.
2417

            
2418
    delete some from book
2419

            
2420
=item C<table>
2421

            
2422
    table => 'book'
2423

            
2424
Table name.
2425

            
2426
=item C<where>
2427

            
2428
Same as C<select> method's C<where> option.
2429

            
2430
=back
2431

            
2432
=head2 C<delete_all>
2433

            
2434
    $dbi->delete_all(table => $table);
2435

            
2436
Execute delete statement for all rows.
2437
Options is same as C<delete>.
2438

            
removed EXPERIMETNAL flag fr...
Yuki Kimoto authored on 2011-03-25
2439
=head2 C<each_column>
2440

            
2441
    $dbi->each_column(
2442
        sub {
2443
            my ($dbi, $table, $column, $column_info) = @_;
2444
            
2445
            my $type = $column_info->{TYPE_NAME};
2446
            
2447
            if ($type eq 'DATE') {
2448
                # ...
2449
            }
2450
        }
2451
    );
2452

            
improved pod
Yuki Kimoto authored on 2011-10-14
2453
Iterate all column informations in database.
2454
Argument is callback which is executed when one column is found.
2455
Callback receive four arguments. C<DBIx::Custom object>, C<table name>,
2456
C<column name>, and C<column information>.
2457

            
2458
If C<user_column_info> is set, C<each_column> method use C<user_column_info>
2459
infromation, you can improve the performance of C<each_column> in
2460
the following way.
2461

            
2462
    my $column_infos = $dbi->get_column_info(exclude_table => qr/^system_/);
2463
    $dbi->user_column_info($column_info);
2464
    $dbi->each_column(sub { ... });
EXPERIMETAL fork safety impl...
Yuki Kimoto authored on 2011-03-12
2465

            
- removed EXPERIMENTAL statu...
Yuki Kimoto authored on 2011-07-26
2466
=head2 C<each_table>
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
2467

            
2468
    $dbi->each_table(
2469
        sub {
2470
            my ($dbi, $table, $table_info) = @_;
2471
            
2472
            my $table_name = $table_info->{TABLE_NAME};
2473
        }
2474
    );
2475

            
improved pod
Yuki Kimoto authored on 2011-10-14
2476
Iterate all table informationsfrom in database.
2477
Argument is callback which is executed when one table is found.
2478
Callback receive three arguments, C<DBIx::Custom object>, C<table name>,
2479
C<table information>.
2480

            
2481
If C<user_table_info> is set, C<each_table> method use C<user_table_info>
2482
infromation, you can improve the performance of C<each_table> in
2483
the following way.
2484

            
2485
    my $table_infos = $dbi->get_table_info(exclude => qr/^system_/);
2486
    $dbi->user_table_info($table_info);
2487
    $dbi->each_table(sub { ... });
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
2488

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

            
update pod
Yuki Kimoto authored on 2011-03-13
2491
    my $result = $dbi->execute(
updated pod
Yuki Kimoto authored on 2011-06-21
2492
      "select * from book where title = :title and author like :author",
2493
      {title => 'Perl', author => '%Ken%'}
2494
    );
2495

            
2496
    my $result = $dbi->execute(
2497
      "select * from book where title = :book.title and author like :book.author",
2498
      {'book.title' => 'Perl', 'book.author' => '%Ken%'}
update pod
Yuki Kimoto authored on 2011-03-13
2499
    );
2500

            
updated pod
Yuki Kimoto authored on 2011-06-21
2501
Execute SQL. SQL can contain column parameter such as :author and :title.
2502
You can append table name to column name such as :book.title and :book.author.
2503
Second argunet is data, embedded into column parameter.
2504
Return value is L<DBIx::Custom::Result> object when select statement is executed,
2505
or the count of affected rows when insert, update, delete statement is executed.
update pod
Yuki Kimoto authored on 2011-03-13
2506

            
I call :title named placehol...
Yuki Kimoto authored on 2011-07-30
2507
Named placeholder such as C<:title> is replaced by placeholder C<?>.
added EXPERIMENTAL parameter...
Yuki Kimoto authored on 2011-07-29
2508
    
micro optimization
Yuki Kimoto authored on 2011-07-30
2509
    # Original
added EXPERIMENTAL parameter...
Yuki Kimoto authored on 2011-07-29
2510
    select * from book where title = :title and author like :author
2511
    
micro optimization
Yuki Kimoto authored on 2011-07-30
2512
    # Replaced
added EXPERIMENTAL parameter...
Yuki Kimoto authored on 2011-07-29
2513
    select * from where title = ? and author like ?;
update pod
Yuki Kimoto authored on 2011-03-13
2514

            
I call :title named placehol...
Yuki Kimoto authored on 2011-07-30
2515
You can specify operator with named placeholder
fixed pod
Yuki Kimoto authored on 2011-10-20
2516
by C<name{operator}> syntax.
added EXPERIMENTAL parameter...
Yuki Kimoto authored on 2011-07-29
2517

            
micro optimization
Yuki Kimoto authored on 2011-07-30
2518
    # Original
added EXPERIMENTAL parameter...
Yuki Kimoto authored on 2011-07-29
2519
    select * from book where :title{=} and :author{like}
2520
    
micro optimization
Yuki Kimoto authored on 2011-07-30
2521
    # Replaced
update pod
Yuki Kimoto authored on 2011-03-13
2522
    select * from where title = ? and author like ?;
2523

            
fixed named placeholder bug ...
Yuki Kimoto authored on 2011-08-01
2524
Note that colons in time format such as 12:13:15 is exeption,
2525
it is not parsed as named placeholder.
2526
If you want to use colon generally, you must escape it by C<\\>
2527

            
2528
    select * from where title = "aa\\:bb";
2529

            
cleanup
Yuki Kimoto authored on 2011-10-20
2530
B<OPTIONS>
2531

            
updated pod
Yuki Kimoto authored on 2011-06-09
2532
The following opitons are available.
update pod
Yuki Kimoto authored on 2011-03-13
2533

            
2534
=over 4
2535

            
added EXPERIMENTAL reuse_sth...
Yuki Kimoto authored on 2011-10-22
2536
=item C<after_build_sql> 
2537

            
2538
You can filter sql after the sql is build.
2539

            
2540
    after_build_sql => $code_ref
2541

            
2542
The following one is one example.
2543

            
2544
    $dbi->select(
2545
        table => 'book',
2546
        column => 'distinct(name)',
2547
        after_build_sql => sub {
2548
            "select count(*) from ($_[0]) as t1"
2549
        }
2550
    );
2551

            
2552
The following SQL is executed.
2553

            
2554
    select count(*) from (select distinct(name) from book) as t1;
2555

            
cleanup
Yuki Kimoto authored on 2011-10-20
2556
=item C<append>
2557

            
2558
    append => 'order by name'
2559

            
2560
Append some statement after SQL.
2561

            
added EXPERIMENTAL execute m...
Yuki Kimoto authored on 2011-08-14
2562
=item C<bind_type>
2563

            
2564
Specify database bind data type.
2565

            
2566
    bind_type => [image => DBI::SQL_BLOB]
2567
    bind_type => [[qw/image audio/] => DBI::SQL_BLOB]
2568

            
2569
This is used to bind parameter by C<bind_param> of statment handle.
2570

            
2571
    $sth->bind_param($pos, $value, DBI::SQL_BLOB);
2572

            
update pod
Yuki Kimoto authored on 2011-03-13
2573
=item C<filter>
updated pod
Yuki Kimoto authored on 2011-06-09
2574
    
2575
    filter => {
2576
        title  => sub { uc $_[0] }
2577
        author => sub { uc $_[0] }
2578
    }
update pod
Yuki Kimoto authored on 2011-03-13
2579

            
updated pod
Yuki Kimoto authored on 2011-06-09
2580
    # Filter name
2581
    filter => {
2582
        title  => 'upper_case',
2583
        author => 'upper_case'
2584
    }
2585
        
2586
    # At once
2587
    filter => [
2588
        [qw/title author/]  => sub { uc $_[0] }
2589
    ]
2590

            
separate DBIx::Custom type_r...
Yuki Kimoto authored on 2011-06-15
2591
Filter. You can set subroutine or filter name
updated pod
Yuki Kimoto authored on 2011-06-21
2592
registered by by C<register_filter>.
separate DBIx::Custom type_r...
Yuki Kimoto authored on 2011-06-15
2593
This filter is executed before data is saved into database.
2594
and before type rule filter is executed.
added EXPERIMENTAL execute()...
Yuki Kimoto authored on 2011-06-09
2595

            
updated document
Yuki Kimoto authored on 2011-06-09
2596
=item C<query>
2597

            
2598
    query => 1
2599

            
DBIx::Custom::Query is DEPRE...
Yuki Kimoto authored on 2011-11-15
2600
C<execute> method return hash reference which contain SQL and column
2601
infromation
updated pod
Yuki Kimoto authored on 2011-06-21
2602

            
DBIx::Custom::Query is DEPRE...
Yuki Kimoto authored on 2011-11-15
2603
    my $sql = $query->{sql};
2604
    my $columns = $query->{columns};
Added execute method's query...
Yuki Kimoto authored on 2011-07-30
2605
    
- DBIx::Custom::QueryBuilder...
Yuki Kimoto authored on 2011-11-04
2606
=item C<reuse>
2607
    
2608
    reuse => $hash_ref
2609

            
2610
Reuse query object if the hash reference variable is set.
2611
    
2612
    my $queries = {};
2613
    $dbi->execute($sql, $param, reuse => $queries);
2614

            
2615
This will improved performance when you want to execute same query repeatedly
2616
because generally creating query object is slow.
2617

            
- removed placeholder count ...
Yuki Kimoto authored on 2011-08-22
2618
=item C<primary_key>
2619

            
cleanup
Yuki Kimoto authored on 2011-10-20
2620
    primary_key => 'id'
2621
    primary_key => ['id1', 'id2']
2622

            
execute method id option is ...
Yuki Kimoto authored on 2011-10-27
2623
Priamry key. This is used for C<id> option.
- removed placeholder count ...
Yuki Kimoto authored on 2011-08-22
2624

            
updated pod
Yuki Kimoto authored on 2011-06-09
2625
=item C<table>
2626
    
2627
    table => 'author'
2628

            
updated pod
Yuki Kimoto authored on 2011-06-21
2629
If you want to omit table name in column name
2630
and enable C<into1> and C<into2> type filter,
2631
You must set C<table> option.
updated pod
Yuki Kimoto authored on 2011-06-09
2632

            
updated pod
Yuki Kimoto authored on 2011-06-21
2633
    $dbi->execute("select * from book where title = :title and author = :author",
2634
        {title => 'Perl', author => 'Ken', table => 'book');
updated pod
Yuki Kimoto authored on 2011-06-09
2635

            
updated pod
Yuki Kimoto authored on 2011-06-21
2636
    # Same
2637
    $dbi->execute(
2638
      "select * from book where title = :book.title and author = :book.author",
2639
      {title => 'Perl', author => 'Ken');
added EXPERIMENTAL execute()...
Yuki Kimoto authored on 2011-06-09
2640

            
- removed EXPERIMENTAL flag ...
Yuki Kimoto authored on 2011-09-12
2641
=item C<table_alias>
added EXPERIMENTAL execute m...
Yuki Kimoto authored on 2011-06-27
2642

            
cleanup
Yuki Kimoto authored on 2011-10-20
2643
    table_alias => {user => 'worker'}
added EXPERIMENTAL execute m...
Yuki Kimoto authored on 2011-06-27
2644

            
2645
Table alias. Key is real table name, value is alias table name.
2646
If you set C<table_alias>, you can enable C<into1> and C<into2> type rule
2647
on alias table name.
2648

            
- removed EXPERIMENTAL flag ...
Yuki Kimoto authored on 2011-09-12
2649
=item C<type_rule_off>
added EXPERIMENTAL execute()...
Yuki Kimoto authored on 2011-06-09
2650

            
2651
    type_rule_off => 1
2652

            
EXPERIMENTAL type_rule argum...
Yuki Kimoto authored on 2011-06-17
2653
Turn C<into1> and C<into2> type rule off.
2654

            
- removed EXPERIMENTAL flag ...
Yuki Kimoto authored on 2011-09-12
2655
=item C<type_rule1_off>
EXPERIMENTAL type_rule argum...
Yuki Kimoto authored on 2011-06-17
2656

            
2657
    type_rule1_off => 1
2658

            
2659
Turn C<into1> type rule off.
2660

            
- removed EXPERIMENTAL flag ...
Yuki Kimoto authored on 2011-09-12
2661
=item C<type_rule2_off>
EXPERIMENTAL type_rule argum...
Yuki Kimoto authored on 2011-06-17
2662

            
2663
    type_rule2_off => 1
2664

            
2665
Turn C<into2> type rule off.
update document
yuki-kimoto authored on 2009-11-19
2666

            
update pod
Yuki Kimoto authored on 2011-03-13
2667
=back
version 0.0901
yuki-kimoto authored on 2009-12-17
2668

            
- removed EXPERIMENTAL flag ...
Yuki Kimoto authored on 2011-09-12
2669
=head2 C<get_column_info>
- added EXPERIMENTAL get_col...
Yuki Kimoto authored on 2011-08-16
2670

            
improved pod
Yuki Kimoto authored on 2011-10-14
2671
    my $column_infos = $dbi->get_column_info(exclude_table => qr/^system_/);
- added EXPERIMENTAL get_col...
Yuki Kimoto authored on 2011-08-16
2672

            
2673
get column infomation except for one which match C<exclude_table> pattern.
2674

            
2675
    [
2676
        {table => 'book', column => 'title', info => {...}},
2677
        {table => 'author', column => 'name' info => {...}}
2678
    ]
2679

            
- removed EXPERIMENTAL flag ...
Yuki Kimoto authored on 2011-09-12
2680
=head2 C<get_table_info>
added test
Yuki Kimoto authored on 2011-08-16
2681

            
improved pod
Yuki Kimoto authored on 2011-10-14
2682
    my $table_infos = $dbi->get_table_info(exclude => qr/^system_/);
update pod
Yuki Kimoto authored on 2011-03-13
2683

            
added test
Yuki Kimoto authored on 2011-08-16
2684
get table infomation except for one which match C<exclude> pattern.
2685

            
2686
    [
2687
        {table => 'book', info => {...}},
2688
        {table => 'author', info => {...}}
2689
    ]
add experimental update_at()...
Yuki Kimoto authored on 2011-02-21
2690

            
added test
Yuki Kimoto authored on 2011-08-16
2691
You can set this value to C<user_table_info>.
update pod
Yuki Kimoto authored on 2011-03-13
2692

            
removed EXPERIMETNAL flag fr...
Yuki Kimoto authored on 2011-10-19
2693
=head2 C<helper>
2694

            
2695
    $dbi->helper(
2696
        find_or_create   => sub {
2697
            my $self = shift;
2698
            
2699
            # Process
update_or_insert method's re...
Yuki Kimoto authored on 2011-10-27
2700
        },
2701
        ...
removed EXPERIMETNAL flag fr...
Yuki Kimoto authored on 2011-10-19
2702
    );
2703

            
2704
Register helper. These helper is called directly from L<DBIx::Custom> object.
2705

            
2706
    $dbi->find_or_create;
2707

            
cleanup
yuki-kimoto authored on 2010-10-17
2708
=head2 C<insert>
2709

            
cleanup
Yuki Kimoto authored on 2011-06-09
2710
    $dbi->insert({title => 'Perl', author => 'Ken'}, table  => 'book');
update pod
Yuki Kimoto authored on 2011-03-13
2711

            
updated pod
Yuki Kimoto authored on 2011-06-21
2712
Execute insert statement. First argument is row data. Return value is
2713
affected row count.
update pod
Yuki Kimoto authored on 2011-03-13
2714

            
insert and update method's p...
Yuki Kimoto authored on 2011-07-29
2715
If you want to set constant value to row data, use scalar reference
2716
as parameter value.
2717

            
2718
    {date => \"NOW()"}
2719

            
cleanup
Yuki Kimoto authored on 2011-10-20
2720
B<options>
2721

            
cleanup
Yuki Kimoto authored on 2011-10-20
2722
C<insert> method use all of C<execute> method's options,
cleanup
Yuki Kimoto authored on 2011-10-20
2723
and use the following new ones.
update pod
Yuki Kimoto authored on 2011-03-13
2724

            
cleanup
Yuki Kimoto authored on 2011-06-09
2725
=over 4
- insert, insert_at, update,...
Yuki Kimoto authored on 2011-06-08
2726

            
- id option work if id count...
Yuki Kimoto authored on 2011-11-03
2727
=item C<created_at>
added EXPERIMENTAL insert cr...
Yuki Kimoto authored on 2011-10-25
2728

            
2729
    created_at => 'created_datetime'
2730

            
2731
Created timestamp column name. time when row is created is set to the column.
2732
default time format is "YYYY-mm-dd HH:MM:SS", which can be changed by
2733
C<now> attribute.
2734

            
added EXPERIMENTAL execute()...
Yuki Kimoto authored on 2011-06-09
2735
=item C<id>
2736

            
updated document
Yuki Kimoto authored on 2011-06-09
2737
    id => 4
2738
    id => [4, 5]
update pod
Yuki Kimoto authored on 2011-03-13
2739

            
updated document
Yuki Kimoto authored on 2011-06-09
2740
ID corresponding to C<primary_key>.
2741
You can insert a row by C<id> and C<primary_key>.
added EXPERIMENTAL execute()...
Yuki Kimoto authored on 2011-06-09
2742

            
update pod
Yuki Kimoto authored on 2011-03-13
2743
    $dbi->insert(
updated document
Yuki Kimoto authored on 2011-06-09
2744
        {title => 'Perl', author => 'Ken'}
fixed pod
Yuki Kimoto authored on 2011-10-20
2745
        primary_key => ['id1', 'id2'],
added EXPERIMENTAL execute()...
Yuki Kimoto authored on 2011-06-09
2746
        id => [4, 5],
updated document
Yuki Kimoto authored on 2011-06-09
2747
        table => 'book'
update pod
Yuki Kimoto authored on 2011-03-13
2748
    );
added EXPERIMENTAL execute()...
Yuki Kimoto authored on 2011-06-09
2749

            
updated document
Yuki Kimoto authored on 2011-06-09
2750
The above is same as the followin one.
update pod
Yuki Kimoto authored on 2011-03-13
2751

            
added EXPERIMENTAL execute()...
Yuki Kimoto authored on 2011-06-09
2752
    $dbi->insert(
updated document
Yuki Kimoto authored on 2011-06-09
2753
        {id1 => 4, id2 => 5, title => 'Perl', author => 'Ken'},
2754
        table => 'book'
added EXPERIMENTAL execute()...
Yuki Kimoto authored on 2011-06-09
2755
    );
update pod
Yuki Kimoto authored on 2011-03-13
2756

            
- removed EXPERIMENTAL statu...
Yuki Kimoto authored on 2011-07-26
2757
=item C<prefix>
added EXPERIMENTAL insert, u...
Yuki Kimoto authored on 2011-06-21
2758

            
2759
    prefix => 'or replace'
2760

            
2761
prefix before table name section
2762

            
2763
    insert or replace into book
2764

            
updated document
Yuki Kimoto authored on 2011-06-09
2765
=item C<table>
2766

            
2767
    table => 'book'
2768

            
2769
Table name.
2770

            
- id option work if id count...
Yuki Kimoto authored on 2011-11-03
2771
=item C<updated_at>
added EXPERIMENTAL insert cr...
Yuki Kimoto authored on 2011-10-25
2772

            
2773
This option is same as C<update> method C<updated_at> option.
2774

            
- removed EXPERIMENTAL flag ...
Yuki Kimoto authored on 2011-09-12
2775
=item C<wrap>
updated pod
Yuki Kimoto authored on 2011-09-02
2776

            
2777
    wrap => {price => sub { "max($_[0])" }}
2778

            
2779
placeholder wrapped string.
2780

            
2781
If the following statement
2782

            
2783
    $dbi->insert({price => 100}, table => 'book',
2784
      {price => sub { "$_[0] + 5" }});
2785

            
2786
is executed, the following SQL is executed.
2787

            
2788
    insert into book price values ( ? + 5 );
2789

            
update pod
Yuki Kimoto authored on 2011-03-13
2790
=back
2791

            
2792
=over 4
2793

            
- removed DEPRECATED DBIx::C...
Yuki Kimoto authored on 2011-04-11
2794
=head2 C<include_model>
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
2795

            
update pod
Yuki Kimoto authored on 2011-03-13
2796
    $dbi->include_model('MyModel');
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
2797

            
update pod
Yuki Kimoto authored on 2011-03-13
2798
Include models from specified namespace,
2799
the following layout is needed to include models.
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
2800

            
update pod
Yuki Kimoto authored on 2011-03-13
2801
    lib / MyModel.pm
2802
        / MyModel / book.pm
2803
                  / company.pm
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
2804

            
update pod
Yuki Kimoto authored on 2011-03-13
2805
Name space module, extending L<DBIx::Custom::Model>.
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
2806

            
update pod
Yuki Kimoto authored on 2011-03-13
2807
B<MyModel.pm>
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
2808

            
2809
    package MyModel;
updated pod
Yuki Kimoto authored on 2011-06-21
2810
    use DBIx::Custom::Model -base;
update pod
Yuki Kimoto authored on 2011-03-13
2811
    
2812
    1;
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
2813

            
update pod
Yuki Kimoto authored on 2011-03-13
2814
Model modules, extending name space module.
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
2815

            
update pod
Yuki Kimoto authored on 2011-03-13
2816
B<MyModel/book.pm>
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
2817

            
update pod
Yuki Kimoto authored on 2011-03-13
2818
    package MyModel::book;
updated pod
Yuki Kimoto authored on 2011-06-21
2819
    use MyModel -base;
update pod
Yuki Kimoto authored on 2011-03-13
2820
    
2821
    1;
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
2822

            
update pod
Yuki Kimoto authored on 2011-03-13
2823
B<MyModel/company.pm>
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
2824

            
update pod
Yuki Kimoto authored on 2011-03-13
2825
    package MyModel::company;
updated pod
Yuki Kimoto authored on 2011-06-21
2826
    use MyModel -base;
update pod
Yuki Kimoto authored on 2011-03-13
2827
    
2828
    1;
2829
    
updated pod
Yuki Kimoto authored on 2011-06-21
2830
MyModel::book and MyModel::company is included by C<include_model>.
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
2831

            
updated pod
Yuki Kimoto authored on 2011-06-21
2832
You can get model object by C<model>.
update pod
Yuki Kimoto authored on 2011-03-13
2833

            
updated pod
Yuki Kimoto authored on 2011-06-21
2834
    my $book_model = $dbi->model('book');
update pod
Yuki Kimoto authored on 2011-03-13
2835
    my $company_model = $dbi->model('company');
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
2836

            
update pod
Yuki Kimoto authored on 2011-03-13
2837
See L<DBIx::Custom::Model> to know model features.
2838

            
cleanup
Yuki Kimoto authored on 2011-10-20
2839
=head2 C<like_value>
added EXPERIMENTAL like_valu...
Yuki Kimoto authored on 2011-09-16
2840

            
2841
    my $like_value = $dbi->like_value
2842

            
cleanup
Yuki Kimoto authored on 2011-10-20
2843
Code reference which return a value for the like value.
added EXPERIMENTAL like_valu...
Yuki Kimoto authored on 2011-09-16
2844

            
2845
    sub { "%$_[0]%" }
2846

            
sqlfilter option is renamed ...
Yuki Kimoto authored on 2011-09-16
2847
=head2 C<mapper>
- added EXPERIMENTAL pass at...
Yuki Kimoto authored on 2011-09-02
2848

            
2849
    my $mapper = $dbi->mapper(param => $param);
2850

            
2851
Create a new L<DBIx::Custom::Mapper> object.
2852

            
- removed DEPRECATED DBIx::C...
Yuki Kimoto authored on 2011-04-11
2853
=head2 C<merge_param>
added EXPERIMENTAL updat_par...
Yuki Kimoto authored on 2011-03-30
2854

            
2855
    my $param = $dbi->merge_param({key1 => 1}, {key1 => 1, key2 => 2});
2856

            
cleanup
Yuki Kimoto authored on 2011-10-20
2857
Merge parameters. The following new parameter is created.
added EXPERIMENTAL updat_par...
Yuki Kimoto authored on 2011-03-30
2858

            
2859
    {key1 => [1, 1], key2 => 2}
2860

            
cleanup
Yuki Kimoto authored on 2011-10-20
2861
If same keys contains, the value is converted to array reference.
2862

            
- removed DEPRECATED DBIx::C...
Yuki Kimoto authored on 2011-04-11
2863
=head2 C<model>
update pod
Yuki Kimoto authored on 2011-03-13
2864

            
2865
    my $model = $dbi->model('book');
2866

            
cleanup
Yuki Kimoto authored on 2011-10-20
2867
Get a L<DBIx::Custom::Model> object
2868
create by C<create_model> or C<include_model>
update pod
Yuki Kimoto authored on 2011-03-13
2869

            
- removed DEPRECATED DBIx::C...
Yuki Kimoto authored on 2011-04-11
2870
=head2 C<mycolumn>
cleanup
Yuki Kimoto authored on 2011-03-21
2871

            
fixed pod
Yuki Kimoto authored on 2011-09-27
2872
    my $column = $dbi->mycolumn(book => ['author', 'title']);
cleanup
Yuki Kimoto authored on 2011-03-21
2873

            
2874
Create column clause for myself. The follwoing column clause is created.
2875

            
2876
    book.author as author,
2877
    book.title as title
2878

            
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
2879
=head2 C<new>
2880

            
update pod
Yuki Kimoto authored on 2011-03-13
2881
    my $dbi = DBIx::Custom->new(
data_source is DEPRECATED! I...
Yuki Kimoto authored on 2011-06-06
2882
        dsn => "dbi:mysql:database=dbname",
update pod
Yuki Kimoto authored on 2011-03-13
2883
        user => 'ken',
2884
        password => '!LFKD%$&',
- dbi_option attribute is re...
Yuki Kimoto authored on 2011-10-05
2885
        option => {mysql_enable_utf8 => 1}
update pod
Yuki Kimoto authored on 2011-03-13
2886
    );
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
2887

            
2888
Create a new L<DBIx::Custom> object.
2889

            
removed EXPERIMETNAL flag fr...
Yuki Kimoto authored on 2011-03-25
2890
=head2 C<not_exists>
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
2891

            
2892
    my $not_exists = $dbi->not_exists;
2893

            
update pod
Yuki Kimoto authored on 2011-03-13
2894
DBIx::Custom::NotExists object, indicating the column is not exists.
cleanup
Yuki Kimoto authored on 2011-10-20
2895
This is used in C<param> of L<DBIx::Custom::Where> .
experimental extended select...
Yuki Kimoto authored on 2011-01-17
2896

            
- removed EXPERIMENTAL flag ...
Yuki Kimoto authored on 2011-09-12
2897
=head2 C<order>
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
2898

            
2899
    my $order = $dbi->order;
2900

            
2901
Create a new L<DBIx::Custom::Order> object.
2902

            
- id option work if id count...
Yuki Kimoto authored on 2011-11-03
2903
=head2 C<q>
added EXPERIMENTAL q method
Yuki Kimoto authored on 2011-10-27
2904

            
2905
    my $quooted = $dbi->q("title");
2906

            
2907
Quote string by value of C<quote>.
2908

            
cleanup
yuki-kimoto authored on 2010-10-17
2909
=head2 C<register_filter>
2910

            
update pod
Yuki Kimoto authored on 2011-03-13
2911
    $dbi->register_filter(
2912
        # Time::Piece object to database DATE format
2913
        tp_to_date => sub {
2914
            my $tp = shift;
2915
            return $tp->strftime('%Y-%m-%d');
2916
        },
2917
        # database DATE format to Time::Piece object
2918
        date_to_tp => sub {
2919
           my $date = shift;
2920
           return Time::Piece->strptime($date, '%Y-%m-%d');
2921
        }
2922
    );
cleanup
yuki-kimoto authored on 2010-10-17
2923
    
update pod
Yuki Kimoto authored on 2011-03-13
2924
Register filters, used by C<filter> option of many methods.
cleanup
yuki-kimoto authored on 2010-10-17
2925

            
removed DBIx::Custom commit ...
yuki-kimoto authored on 2010-07-14
2926
=head2 C<select>
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
2927

            
select method column option ...
Yuki Kimoto authored on 2011-02-22
2928
    my $result = $dbi->select(
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
2929
        table  => 'book',
2930
        column => ['author', 'title'],
2931
        where  => {author => 'Ken'},
select method column option ...
Yuki Kimoto authored on 2011-02-22
2932
    );
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
2933
    
updated document
Yuki Kimoto authored on 2011-06-09
2934
Execute select statement.
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
2935

            
cleanup
Yuki Kimoto authored on 2011-10-20
2936
B<OPTIONS>
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
2937

            
cleanup
Yuki Kimoto authored on 2011-10-20
2938
C<select> method use all of C<execute> method's options,
2939
and use the following new ones.
added EXPERIMENTAL execute m...
Yuki Kimoto authored on 2011-08-14
2940

            
cleanup
Yuki Kimoto authored on 2011-10-20
2941
=over 4
added EXPERIMENTAL execute m...
Yuki Kimoto authored on 2011-08-14
2942

            
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
2943
=item C<column>
2944
    
updated document
Yuki Kimoto authored on 2011-06-09
2945
    column => 'author'
2946
    column => ['author', 'title']
2947

            
2948
Column clause.
updated pod
Yuki Kimoto authored on 2011-06-07
2949
    
updated document
Yuki Kimoto authored on 2011-06-09
2950
if C<column> is not specified, '*' is set.
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
2951

            
updated document
Yuki Kimoto authored on 2011-06-09
2952
    column => '*'
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
2953

            
- removed EXPERIMENTAL statu...
Yuki Kimoto authored on 2011-07-26
2954
You can specify hash of array reference.
updated pod
Yuki Kimoto authored on 2011-06-07
2955

            
updated document
Yuki Kimoto authored on 2011-06-09
2956
    column => [
updated pod
Yuki Kimoto authored on 2011-06-07
2957
        {book => [qw/author title/]},
2958
        {person => [qw/name age/]}
updated document
Yuki Kimoto authored on 2011-06-09
2959
    ]
updated pod
Yuki Kimoto authored on 2011-06-07
2960

            
updated pod
Yuki Kimoto authored on 2011-06-21
2961
This is expanded to the following one by using C<colomn> method.
- select() column option can...
Yuki Kimoto authored on 2011-06-08
2962

            
2963
    book.author as "book.author",
2964
    book.title as "book.title",
2965
    person.name as "person.name",
2966
    person.age as "person.age"
2967

            
- select method column optio...
Yuki Kimoto authored on 2011-07-11
2968
You can specify array of array reference, first argument is
2969
column name, second argument is alias.
- select() column option can...
Yuki Kimoto authored on 2011-06-08
2970

            
updated document
Yuki Kimoto authored on 2011-06-09
2971
    column => [
- select method column optio...
Yuki Kimoto authored on 2011-07-11
2972
        ['date(book.register_datetime)' => 'book.register_date']
updated document
Yuki Kimoto authored on 2011-06-09
2973
    ];
- select() column option can...
Yuki Kimoto authored on 2011-06-08
2974

            
- select method column optio...
Yuki Kimoto authored on 2011-07-11
2975
Alias is quoted properly and joined.
- select() column option can...
Yuki Kimoto authored on 2011-06-08
2976

            
2977
    date(book.register_datetime) as "book.register_date"
updated pod
Yuki Kimoto authored on 2011-06-07
2978

            
updated document
Yuki Kimoto authored on 2011-06-09
2979
=item C<id>
2980

            
2981
    id => 4
2982
    id => [4, 5]
2983

            
2984
ID corresponding to C<primary_key>.
2985
You can select rows by C<id> and C<primary_key>.
2986

            
2987
    $dbi->select(
fixed pod
Yuki Kimoto authored on 2011-10-20
2988
        primary_key => ['id1', 'id2'],
updated document
Yuki Kimoto authored on 2011-06-09
2989
        id => [4, 5],
2990
        table => 'book'
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
2991
    );
2992

            
updated document
Yuki Kimoto authored on 2011-06-09
2993
The above is same as the followin one.
2994

            
updated pod
Yuki Kimoto authored on 2011-04-25
2995
    $dbi->select(
updated document
Yuki Kimoto authored on 2011-06-09
2996
        where => {id1 => 4, id2 => 5},
2997
        table => 'book'
where can recieve array refr...
Yuki Kimoto authored on 2011-03-24
2998
    );
2999
    
cleanup
Yuki Kimoto authored on 2011-10-20
3000
=item C<param>
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
3001

            
updated document
Yuki Kimoto authored on 2011-06-09
3002
    param => {'table2.key3' => 5}
update pod
Yuki Kimoto authored on 2011-03-12
3003

            
updated document
Yuki Kimoto authored on 2011-06-09
3004
Parameter shown before where clause.
3005
    
3006
For example, if you want to contain tag in join clause, 
3007
you can pass parameter by C<param> option.
update pod
Yuki Kimoto authored on 2011-03-12
3008

            
updated document
Yuki Kimoto authored on 2011-06-09
3009
    join  => ['inner join (select * from table2 where table2.key3 = :table2.key3)' . 
3010
              ' as table2 on table1.key1 = table2.key1']
3011

            
- removed EXPERIMENTAL statu...
Yuki Kimoto authored on 2011-07-26
3012
=itme C<prefix>
added EXPERIMENTAL select pr...
Yuki Kimoto authored on 2011-06-13
3013

            
3014
    prefix => 'SQL_CALC_FOUND_ROWS'
3015

            
3016
Prefix of column cluase
3017

            
3018
    select SQL_CALC_FOUND_ROWS title, author from book;
3019

            
updated document
Yuki Kimoto authored on 2011-06-09
3020
=item C<join>
3021

            
3022
    join => [
3023
        'left outer join company on book.company_id = company_id',
3024
        'left outer join location on company.location_id = location.id'
3025
    ]
3026
        
3027
Join clause. If column cluase or where clause contain table name like "company.name",
3028
join clausees needed when SQL is created is used automatically.
update pod
Yuki Kimoto authored on 2011-03-12
3029

            
3030
    $dbi->select(
3031
        table => 'book',
cleanup
Yuki Kimoto authored on 2011-06-13
3032
        column => ['company.location_id as location_id'],
update pod
Yuki Kimoto authored on 2011-03-12
3033
        where => {'company.name' => 'Orange'},
3034
        join => [
3035
            'left outer join company on book.company_id = company.id',
3036
            'left outer join location on company.location_id = location.id'
3037
        ]
3038
    );
3039

            
updated document
Yuki Kimoto authored on 2011-06-09
3040
In above select, column and where clause contain "company" table,
3041
the following SQL is created
update pod
Yuki Kimoto authored on 2011-03-12
3042

            
cleanup
Yuki Kimoto authored on 2011-06-13
3043
    select company.location_id as location_id
update pod
Yuki Kimoto authored on 2011-03-12
3044
    from book
3045
      left outer join company on book.company_id = company.id
cleanup
Yuki Kimoto authored on 2011-06-13
3046
    where company.name = ?;
update pod
Yuki Kimoto authored on 2011-03-12
3047

            
added join new syntax
Yuki Kimoto authored on 2011-07-28
3048
You can specify two table by yourself. This is useful when join parser can't parse
- removed EXPERIMENTAL flag ...
Yuki Kimoto authored on 2011-09-12
3049
the join clause correctly.
added join new syntax
Yuki Kimoto authored on 2011-07-28
3050

            
3051
    $dbi->select(
3052
        table => 'book',
3053
        column => ['company.location_id as location_id'],
3054
        where => {'company.name' => 'Orange'},
3055
        join => [
3056
            {
3057
                clause => 'left outer join location on company.location_id = location.id',
3058
                table => ['company', 'location']
3059
            }
3060
        ]
3061
    );
3062

            
updated document
Yuki Kimoto authored on 2011-06-09
3063
=item C<table>
updated pod
Yuki Kimoto authored on 2011-06-08
3064

            
updated document
Yuki Kimoto authored on 2011-06-09
3065
    table => 'book'
updated pod
Yuki Kimoto authored on 2011-06-08
3066

            
updated document
Yuki Kimoto authored on 2011-06-09
3067
Table name.
updated pod
Yuki Kimoto authored on 2011-06-08
3068

            
updated document
Yuki Kimoto authored on 2011-06-09
3069
=item C<where>
3070
    
3071
    # Hash refrence
3072
    where => {author => 'Ken', 'title' => 'Perl'}
3073
    
3074
    # DBIx::Custom::Where object
3075
    where => $dbi->where(
- id option work if id count...
Yuki Kimoto authored on 2011-11-03
3076
        clause => ['and', ':author{=}', ':title{like}'],
updated document
Yuki Kimoto authored on 2011-06-09
3077
        param  => {author => 'Ken', title => '%Perl%'}
3078
    );
updated pod
Yuki Kimoto authored on 2011-06-21
3079
    
- id option work if id count...
Yuki Kimoto authored on 2011-11-03
3080
    # Array reference, this is same as above
updated pod
Yuki Kimoto authored on 2011-06-21
3081
    where => [
- id option work if id count...
Yuki Kimoto authored on 2011-11-03
3082
        ['and', ':author{=}', ':title{like}'],
updated pod
Yuki Kimoto authored on 2011-06-21
3083
        {author => 'Ken', title => '%Perl%'}
- id option work if id count...
Yuki Kimoto authored on 2011-11-03
3084
    ];
updated pod
Yuki Kimoto authored on 2011-06-21
3085
    
3086
    # String
3087
    where => 'title is null'
update pod
Yuki Kimoto authored on 2011-03-12
3088

            
cleanup
Yuki Kimoto authored on 2011-10-20
3089
Where clause. See L<DBIx::Custom::Where>.
updated document
Yuki Kimoto authored on 2011-06-09
3090
    
update pod
Yuki Kimoto authored on 2011-03-12
3091
=back
cleanup
Yuki Kimoto authored on 2011-03-08
3092

            
removed EXPERIMETNAL flag fr...
Yuki Kimoto authored on 2011-10-19
3093
=head2 C<setup_model>
3094

            
3095
    $dbi->setup_model;
3096

            
3097
Setup all model objects.
3098
C<columns> of model object is automatically set, parsing database information.
3099

            
3100
=head2 C<type_rule>
3101

            
3102
    $dbi->type_rule(
3103
        into1 => {
3104
            date => sub { ... },
3105
            datetime => sub { ... }
3106
        },
3107
        into2 => {
3108
            date => sub { ... },
3109
            datetime => sub { ... }
3110
        },
3111
        from1 => {
3112
            # DATE
3113
            9 => sub { ... },
3114
            # DATETIME or TIMESTAMP
3115
            11 => sub { ... },
3116
        }
3117
        from2 => {
3118
            # DATE
3119
            9 => sub { ... },
3120
            # DATETIME or TIMESTAMP
3121
            11 => sub { ... },
3122
        }
3123
    );
3124

            
3125
Filtering rule when data is send into and get from database.
3126
This has a little complex problem.
3127

            
3128
In C<into1> and C<into2> you can specify
3129
type name as same as type name defined
3130
by create table, such as C<DATETIME> or C<DATE>.
3131

            
3132
Note that type name and data type don't contain upper case.
3133
If these contain upper case charactor, you convert it to lower case.
3134

            
3135
C<into2> is executed after C<into1>.
3136

            
3137
Type rule of C<into1> and C<into2> is enabled on the following
3138
column name.
3139

            
3140
=over 4
3141

            
3142
=item 1. column name
3143

            
3144
    issue_date
3145
    issue_datetime
3146

            
3147
This need C<table> option in each method.
3148

            
3149
=item 2. table name and column name, separator is dot
3150

            
3151
    book.issue_date
3152
    book.issue_datetime
3153

            
3154
=back
3155

            
3156
You get all type name used in database by C<available_typename>.
3157

            
3158
    print $dbi->available_typename;
3159

            
3160
In C<from1> and C<from2> you specify data type, not type name.
3161
C<from2> is executed after C<from1>.
3162
You get all data type by C<available_datatype>.
3163

            
3164
    print $dbi->available_datatype;
3165

            
3166
You can also specify multiple types at once.
3167

            
3168
    $dbi->type_rule(
3169
        into1 => [
3170
            [qw/DATE DATETIME/] => sub { ... },
3171
        ],
3172
    );
3173

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

            
updated document
Yuki Kimoto authored on 2011-06-09
3176
    $dbi->update({title => 'Perl'}, table  => 'book', where  => {id => 4});
removed reconnect method
yuki-kimoto authored on 2010-05-28
3177

            
insert and update method's p...
Yuki Kimoto authored on 2011-07-29
3178
Execute update statement. First argument is update row data.
3179

            
3180
If you want to set constant value to row data, use scalar reference
3181
as parameter value.
3182

            
3183
    {date => \"NOW()"}
added experimental update_pa...
Yuki Kimoto authored on 2011-03-08
3184

            
cleanup
Yuki Kimoto authored on 2011-10-20
3185
B<OPTIONS>
- insert, insert_at, update,...
Yuki Kimoto authored on 2011-06-08
3186

            
cleanup
Yuki Kimoto authored on 2011-10-20
3187
C<update> method use all of C<execute> method's options,
3188
and use the following new ones.
- insert, insert_at, update,...
Yuki Kimoto authored on 2011-06-08
3189

            
cleanup
Yuki Kimoto authored on 2011-10-20
3190
=over 4
- insert, insert_at, update,...
Yuki Kimoto authored on 2011-06-08
3191

            
updated document
Yuki Kimoto authored on 2011-06-09
3192
=item C<id>
- insert, insert_at, update,...
Yuki Kimoto authored on 2011-06-08
3193

            
updated document
Yuki Kimoto authored on 2011-06-09
3194
    id => 4
3195
    id => [4, 5]
- insert, insert_at, update,...
Yuki Kimoto authored on 2011-06-08
3196

            
updated document
Yuki Kimoto authored on 2011-06-09
3197
ID corresponding to C<primary_key>.
3198
You can update rows by C<id> and C<primary_key>.
update pod
Yuki Kimoto authored on 2011-03-13
3199

            
DEPRECATED select() param op...
Yuki Kimoto authored on 2011-04-25
3200
    $dbi->update(
updated document
Yuki Kimoto authored on 2011-06-09
3201
        {title => 'Perl', author => 'Ken'}
fixed pod
Yuki Kimoto authored on 2011-10-20
3202
        primary_key => ['id1', 'id2'],
updated document
Yuki Kimoto authored on 2011-06-09
3203
        id => [4, 5],
3204
        table => 'book'
where can recieve array refr...
Yuki Kimoto authored on 2011-03-24
3205
    );
update pod
Yuki Kimoto authored on 2011-03-13
3206

            
updated document
Yuki Kimoto authored on 2011-06-09
3207
The above is same as the followin one.
update pod
Yuki Kimoto authored on 2011-03-13
3208

            
updated document
Yuki Kimoto authored on 2011-06-09
3209
    $dbi->update(
3210
        {title => 'Perl', author => 'Ken'}
3211
        where => {id1 => 4, id2 => 5},
3212
        table => 'book'
3213
    );
update pod
Yuki Kimoto authored on 2011-03-13
3214

            
- removed EXPERIMENTAL statu...
Yuki Kimoto authored on 2011-07-26
3215
=item C<prefix>
added EXPERIMENTAL insert, u...
Yuki Kimoto authored on 2011-06-21
3216

            
3217
    prefix => 'or replace'
3218

            
3219
prefix before table name section
3220

            
3221
    update or replace book
3222

            
updated document
Yuki Kimoto authored on 2011-06-09
3223
=item C<table>
update pod
Yuki Kimoto authored on 2011-03-13
3224

            
updated document
Yuki Kimoto authored on 2011-06-09
3225
    table => 'book'
update pod
Yuki Kimoto authored on 2011-03-13
3226

            
updated document
Yuki Kimoto authored on 2011-06-09
3227
Table name.
update pod
Yuki Kimoto authored on 2011-03-13
3228

            
added EXPERIMENTAL execute m...
Yuki Kimoto authored on 2011-08-14
3229
=item C<where>
3230

            
3231
Same as C<select> method's C<where> option.
3232

            
- removed EXPERIMENTAL flag ...
Yuki Kimoto authored on 2011-09-12
3233
=item C<wrap>
updated pod
Yuki Kimoto authored on 2011-09-02
3234

            
3235
    wrap => {price => sub { "max($_[0])" }}
3236

            
3237
placeholder wrapped string.
3238

            
3239
If the following statement
3240

            
3241
    $dbi->update({price => 100}, table => 'book',
3242
      {price => sub { "$_[0] + 5" }});
3243

            
3244
is executed, the following SQL is executed.
3245

            
3246
    update book set price =  ? + 5;
3247

            
- id option work if id count...
Yuki Kimoto authored on 2011-11-03
3248
=item C<updated_at>
added EXPERIMENTAL insert cr...
Yuki Kimoto authored on 2011-10-25
3249

            
3250
    updated_at => 'updated_datetime'
3251

            
3252
Updated timestamp column name. time when row is updated is set to the column.
3253
default time format is C<YYYY-mm-dd HH:MM:SS>, which can be changed by
3254
C<now> attribute.
3255

            
updated pod
Yuki Kimoto authored on 2011-06-08
3256
=back
update pod
Yuki Kimoto authored on 2011-03-13
3257

            
updated pod
Yuki Kimoto authored on 2011-06-08
3258
=head2 C<update_all>
update pod
Yuki Kimoto authored on 2011-03-13
3259

            
updated pod
Yuki Kimoto authored on 2011-06-21
3260
    $dbi->update_all({title => 'Perl'}, table => 'book', );
update pod
Yuki Kimoto authored on 2011-03-13
3261

            
updated document
Yuki Kimoto authored on 2011-06-09
3262
Execute update statement for all rows.
updated pod
Yuki Kimoto authored on 2011-06-21
3263
Options is same as C<update> method.
update pod
Yuki Kimoto authored on 2011-03-13
3264

            
- id option work if id count...
Yuki Kimoto authored on 2011-11-03
3265
=head2 C<update_or_insert>
- removed DEPRECATED status ...
Yuki Kimoto authored on 2011-10-11
3266
    
3267
    # ID
3268
    $dbi->update_or_insert(
3269
        {title => 'Perl'},
3270
        table => 'book',
3271
        id => 1,
3272
        primary_key => 'id',
- EXPERIMENTAL update_or_ins...
Yuki Kimoto authored on 2011-10-27
3273
        option => {
3274
            select => {
3275
                 append => 'for update'
3276
            }
3277
        }
- removed DEPRECATED status ...
Yuki Kimoto authored on 2011-10-11
3278
    );
- EXPERIMENTAL update_or_ins...
Yuki Kimoto authored on 2011-10-27
3279

            
- removed DEPRECATED status ...
Yuki Kimoto authored on 2011-10-11
3280
Update or insert.
3281

            
- EXPERIMENTAL update_or_ins...
Yuki Kimoto authored on 2011-10-27
3282
C<update_or_insert> method execute C<select> method first to find row.
3283
If the row is exists, C<update> is executed.
3284
If not, C<insert> is executed.
- removed DEPRECATED status ...
Yuki Kimoto authored on 2011-10-11
3285

            
- EXPERIMENTAL update_or_ins...
Yuki Kimoto authored on 2011-10-27
3286
C<OPTIONS>
3287

            
3288
C<update_or_insert> method use all common option
3289
in C<select>, C<update>, C<delete>, and has the following new ones.
3290

            
3291
=over 4
3292

            
3293
=item C<option>
3294

            
3295
    option => {
3296
        select => {
3297
            append => '...'
3298
        },
3299
        insert => {
3300
            prefix => '...'
3301
        },
3302
        update => {
3303
            filter => {}
3304
        }
3305
    }
- removed DEPRECATED status ...
Yuki Kimoto authored on 2011-10-11
3306

            
- EXPERIMENTAL update_or_ins...
Yuki Kimoto authored on 2011-10-27
3307
If you want to pass option to each method,
3308
you can use C<option> option.
- removed DEPRECATED status ...
Yuki Kimoto authored on 2011-10-11
3309

            
3310
=over 4
3311

            
3312
=item C<select_option>
3313

            
3314
    select_option => {append => 'for update'}
3315

            
3316
select method option,
3317
select method is used to check the row is already exists.
3318

            
- removed EXPERIMENTAL flag ...
Yuki Kimoto authored on 2011-09-12
3319
=head2 C<show_datatype>
update pod
Yuki Kimoto authored on 2011-08-10
3320

            
3321
    $dbi->show_datatype($table);
3322

            
3323
Show data type of the columns of specified table.
3324

            
3325
    book
3326
    title: 5
3327
    issue_date: 91
3328

            
3329
This data type is used in C<type_rule>'s C<from1> and C<from2>.
3330

            
- removed EXPERIMENTAL the f...
Yuki Kimoto authored on 2011-09-12
3331
=head2 C<show_tables>
test cleanup
Yuki Kimoto authored on 2011-08-15
3332

            
3333
    $dbi->show_tables;
3334

            
3335
Show tables.
3336

            
- removed EXPERIMENTAL flag ...
Yuki Kimoto authored on 2011-09-12
3337
=head2 C<show_typename>
update pod
Yuki Kimoto authored on 2011-08-10
3338

            
3339
    $dbi->show_typename($table);
3340

            
3341
Show type name of the columns of specified table.
3342

            
3343
    book
3344
    title: varchar
3345
    issue_date: date
3346

            
3347
This type name is used in C<type_rule>'s C<into1> and C<into2>.
3348

            
removed EXPERIMETNAL flag fr...
Yuki Kimoto authored on 2011-10-19
3349
=head2 C<values_clause>
3350

            
3351
    my $values_clause = $dbi->values_clause({title => 'a', age => 2});
3352

            
3353
Create values clause.
3354

            
3355
    (title, author) values (title = :title, age = :age);
3356

            
3357
You can use this in insert statement.
3358

            
3359
    my $insert_sql = "insert into book $values_clause";
3360

            
3361
=head2 C<where>
3362

            
3363
    my $where = $dbi->where(
3364
        clause => ['and', 'title = :title', 'author = :author'],
3365
        param => {title => 'Perl', author => 'Ken'}
3366
    );
3367

            
3368
Create a new L<DBIx::Custom::Where> object.
3369

            
- added EXPERIMENTAL update_...
Yuki Kimoto authored on 2011-09-12
3370
=head1 ENVIRONMENTAL VARIABLES
3371

            
3372
=head2 C<DBIX_CUSTOM_DEBUG>
3373

            
3374
If environment variable C<DBIX_CUSTOM_DEBUG> is set to true,
3375
executed SQL and bind values are printed to STDERR.
3376

            
improved debug message
Yuki Kimoto authored on 2011-05-23
3377
=head2 C<DBIX_CUSTOM_DEBUG_ENCODING>
3378

            
3379
DEBUG output encoding. Default to UTF-8.
added environment variable D...
Yuki Kimoto authored on 2011-04-02
3380

            
- fixed bug DBIx::Custom::Re...
Yuki Kimoto authored on 2011-11-08
3381
=head2 C<DBIX_CUSTOM_TAG_PARSE>
3382

            
3383
If you set DBIX_CUSTOM_TAG_PARSE to 0, tag parsing is off.
3384

            
3385
=head2 C<DBIX_CUSTOM_DISABLE_MODEL_EXECUTE>
3386

            
3387
If you set DBIX_CUSTOM_DISABLE_MODEL_EXECUTE to 1,
3388
L<DBIx::Custom::Model> execute method call L<DBIx::Custom> execute.
3389

            
fix heading typos
Terrence Brannon authored on 2011-08-17
3390
=head1 DEPRECATED FUNCTIONALITY
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3391

            
3392
L<DBIx::Custom>
3393

            
3394
    # Attribute methods
- DBIx::Custom::QueryBuilder...
Yuki Kimoto authored on 2011-11-04
3395
    tag_parse # will be removed 2017/1/1
- dbi_option attribute is re...
Yuki Kimoto authored on 2011-10-05
3396
    default_dbi_option # will be removed 2017/1/1
3397
    dbi_option # will be removed 2017/1/1
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3398
    data_source # will be removed at 2017/1/1
3399
    dbi_options # will be removed at 2017/1/1
3400
    filter_check # will be removed at 2017/1/1
3401
    reserved_word_quote # will be removed at 2017/1/1
3402
    cache_method # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3403
    
3404
    # Methods
- insert timestamp option is...
Yuki Kimoto authored on 2011-10-25
3405
    update_timestamp # will be removed at 2017/1/1
3406
    insert_timestamp # will be removed at 2017/1/1
- method method of DBIx::Cus...
Yuki Kimoto authored on 2011-10-10
3407
    method # will be removed at 2017/1/1
- update_param is DEPRECATED...
Yuki Kimoto authored on 2011-10-04
3408
    assign_param # will be removed at 2017/1/1
3409
    update_param # will be removed at 2017/1/1
3410
    insert_param # will be removed at 2017/1/1
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3411
    create_query # will be removed at 2017/1/1
3412
    apply_filter # will be removed at 2017/1/1
3413
    select_at # will be removed at 2017/1/1
3414
    delete_at # will be removed at 2017/1/1
3415
    update_at # will be removed at 2017/1/1
3416
    insert_at # will be removed at 2017/1/1
3417
    register_tag # will be removed at 2017/1/1
3418
    default_bind_filter # will be removed at 2017/1/1
3419
    default_fetch_filter # will be removed at 2017/1/1
3420
    insert_param_tag # will be removed at 2017/1/1
update pod
Yuki Kimoto authored on 2011-08-10
3421
    register_tag # will be removed at 2017/1/1
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3422
    register_tag_processor # will be removed at 2017/1/1
3423
    update_param_tag # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3424
    
3425
    # Options
- insert method created_at a...
Yuki Kimoto authored on 2011-10-27
3426
    select column option [COLUMN => ALIAS] syntax # will be removed 2017/1/1
execute method id option is ...
Yuki Kimoto authored on 2011-10-27
3427
    execute method id option # will be removed 2017/1/1
- insert timestamp option is...
Yuki Kimoto authored on 2011-10-25
3428
    update timestamp option # will be removed 2017/1/1
3429
    insert timestamp option # will be removed 2017/1/1
cleanup
Yuki Kimoto authored on 2011-10-21
3430
    select method where_param option # will be removed 2017/1/1
cleanup
Yuki Kimoto authored on 2011-10-21
3431
    delete method where_param option # will be removed 2017/1/1
cleanup
Yuki Kimoto authored on 2011-10-21
3432
    update method where_param option # will be removed 2017/1/1
cleanup
Yuki Kimoto authored on 2011-10-21
3433
    insert method param option # will be removed at 2017/1/1
insert method's id option is...
Yuki Kimoto authored on 2011-10-10
3434
    insert method id option # will be removed at 2017/1/1
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3435
    select method relation option # will be removed at 2017/1/1
3436
    select method column option [COLUMN, as => ALIAS] format
3437
      # will be removed at 2017/1/1
sqlfilter option is renamed ...
Yuki Kimoto authored on 2011-09-16
3438
    execute method's sqlfilter option # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3439
    
3440
    # Others
micro optimization and
Yuki Kimoto authored on 2011-10-25
3441
    execute($query, ...) # execute method receiving query object.
3442
                         # this is removed at 2017/1/1
cleanup
Yuki Kimoto authored on 2011-07-28
3443
    execute("select * from {= title}"); # execute method's
3444
                                        # tag parsing functionality
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3445
                                        # will be removed at 2017/1/1
3446
    Query caching # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3447

            
3448
L<DBIx::Custom::Model>
3449

            
DBIx::Custom::Query filters ...
Yuki Kimoto authored on 2011-07-30
3450
    # Attribute methods
DBIx::Custom::Model execute ...
Yuki Kimoto authored on 2011-11-01
3451
    execute # will be removed at 2017/1/1
- method method of DBIx::Cus...
Yuki Kimoto authored on 2011-10-10
3452
    method # will be removed at 2017/1/1
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3453
    filter # will be removed at 2017/1/1
3454
    name # will be removed at 2017/1/1
3455
    type # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3456

            
3457
L<DBIx::Custom::Query>
DBIx::Custom::Query is DEPRE...
Yuki Kimoto authored on 2011-11-15
3458

            
3459
This module is DEPRECATED! # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3460
    
DBIx::Custom::Query filters ...
Yuki Kimoto authored on 2011-07-30
3461
    # Attribute methods
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3462
    default_filter # will be removed at 2017/1/1
DBIx::Custom::Query filters ...
Yuki Kimoto authored on 2011-07-30
3463
    table # will be removed at 2017/1/1
3464
    filters # will be removed at 2017/1/1
3465
    
3466
    # Methods
3467
    filter # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3468

            
3469
L<DBIx::Custom::QueryBuilder>
- DBIx::Custom::QueryBuilder...
Yuki Kimoto authored on 2011-11-04
3470

            
3471
This module is DEPRECATED! # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3472
    
DBIx::Custom::Query filters ...
Yuki Kimoto authored on 2011-07-30
3473
    # Attribute methods
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3474
    tags # will be removed at 2017/1/1
3475
    tag_processors # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3476
    
DBIx::Custom::Query filters ...
Yuki Kimoto authored on 2011-07-30
3477
    # Methods
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3478
    register_tag # will be removed at 2017/1/1
3479
    register_tag_processor # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3480
    
3481
    # Others
3482
    build_query("select * from {= title}"); # tag parsing functionality
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3483
                                            # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3484

            
3485
L<DBIx::Custom::Result>
3486
    
DBIx::Custom::Query filters ...
Yuki Kimoto authored on 2011-07-30
3487
    # Attribute methods
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3488
    filter_check # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3489
    
3490
    # Methods
- DBIx::Custom::Result filte...
Yuki Kimoto authored on 2011-11-03
3491
    filter_on # will be removed at 2017/1/1
3492
    filter_off # will be removed at 2017/1/1
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3493
    end_filter # will be removed at 2017/1/1
3494
    remove_end_filter # will be removed at 2017/1/1
3495
    remove_filter # will be removed at 2017/1/1
3496
    default_filter # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3497

            
3498
L<DBIx::Custom::Tag>
3499

            
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3500
    This module is DEPRECATED! # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3501

            
micro optimization
Yuki Kimoto authored on 2011-11-07
3502
L<DBIx::Custom::Order>
3503

            
3504
    # Other
3505
    prepend method array reference receiving
3506
      $order->prepend(['book', 'desc']); # will be removed 2017/1/1
3507

            
fix heading typos
Terrence Brannon authored on 2011-08-17
3508
=head1 BACKWARDS COMPATIBILITY POLICY
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3509

            
3510
If a functionality is DEPRECATED, you can know it by DEPRECATED warnings
3511
except for attribute method.
3512
You can check all DEPRECATED functionalities by document.
3513
DEPRECATED functionality is removed after five years,
3514
but if at least one person use the functionality and tell me that thing
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3515
I extend one year each time he tell me it.
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3516

            
3517
EXPERIMENTAL functionality will be changed without warnings.
DBIx::Custom is now stable
yuki-kimoto authored on 2010-09-07
3518

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

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

            
3523
C<< <kimoto.yuki at gmail.com> >>
3524

            
3525
L<http://github.com/yuki-kimoto/DBIx-Custom>
3526

            
removed reconnect method
yuki-kimoto authored on 2010-05-28
3527
=head1 AUTHOR
3528

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

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

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

            
3535
This program is free software; you can redistribute it and/or modify it
3536
under the same terms as Perl itself.
3537

            
3538
=cut