DBIx-Custom / lib / DBIx / Custom.pm /
Newer Older
3544 lines | 92.747kb
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);
1240

            
1241
        # Remove reserved word quote
1242
        if (my $q = $self->_quote) {
added quote method's two cha...
Yuki Kimoto authored on 2011-07-29
1243
            $q = quotemeta($q);
micro optimization
Yuki Kimoto authored on 2011-11-16
1244
            $_ =~ s/[$q]//g for @{$query->{columns}}
cleanup
Yuki Kimoto authored on 2011-06-13
1245
        }
updated pod
Yuki Kimoto authored on 2011-06-21
1246

            
1247
        # Save query to cache
1248
        $self->cache_method->(
1249
            $self, $source,
1250
            {
micro optimization
Yuki Kimoto authored on 2011-11-16
1251
                sql     => $query->{sql}, 
1252
                columns => $query->{columns},
DBIx::Custom::Query tables a...
Yuki Kimoto authored on 2011-07-30
1253
                tables  => $query->{tables} || []
updated pod
Yuki Kimoto authored on 2011-06-21
1254
            }
1255
        ) if $cache;
cleanup
Yuki Kimoto authored on 2011-06-13
1256
    }
added EXPERIMENTAL execute m...
Yuki Kimoto authored on 2011-08-14
1257

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

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

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

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

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

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

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

            
- dbi_option attribute is re...
Yuki Kimoto authored on 2011-10-05
1427
sub _option {
1428
    my $self = shift;
1429
    my $option = {%{$self->dbi_options}, %{$self->dbi_option}, %{$self->option}};
1430
    warn "dbi_options is DEPRECATED! use option instead\n"
1431
      if keys %{$self->dbi_options};
1432
    warn "dbi_option is DEPRECATED! use option instead\n"
1433
      if keys %{$self->dbi_option};
1434
    return $option;
1435
}
1436

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

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

            
reserved_word_quote is DEPRE...
Yuki Kimoto authored on 2011-06-17
1508
sub _quote {
1509
    my $self = shift;
micro optimization
Yuki Kimoto authored on 2011-10-22
1510
    return $self->{reserved_word_quote} || $self->quote || '';
reserved_word_quote is DEPRE...
Yuki Kimoto authored on 2011-06-17
1511
}
1512

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

            
1526
    return $new_tables;
cleanup
Yuki Kimoto authored on 2011-04-02
1527
}
1528

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

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

            
cleanup
Yuki Kimoto authored on 2011-10-21
1549
    $where ||= {};
cleanup
Yuki Kimoto authored on 2011-10-25
1550
    $where = $self->_id_to_param($id, $primary_key, $table) if defined $id;
cleanup
Yuki Kimoto authored on 2011-10-25
1551
    $where_param ||= {};
cleanup
Yuki Kimoto authored on 2011-10-21
1552
    my $w = {};
1553
    my $where_clause = '';
cleanup
Yuki Kimoto authored on 2011-10-25
1554

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

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

            
1600
        $w->{param} = keys %$where_param
1601
                    ? $self->merge_param($where_param, $obj->param)
1602
                    : $obj->param;
1603
        $w->{clause} = $obj->to_string;
cleanup
Yuki Kimoto authored on 2011-10-21
1604
    }
1605
    elsif ($where) {
1606
        $w->{clause} = "where $where";
cleanup
Yuki Kimoto authored on 2011-10-25
1607
        $w->{param} = $where_param;
cleanup
Yuki Kimoto authored on 2011-10-21
1608
    }
1609
    
1610
    return $w;
1611
}
1612

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

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

            
- update_param is DEPRECATED...
Yuki Kimoto authored on 2011-10-04
1683
# DEPRECATED!
1684
has 'data_source';
1685
has dbi_options => sub { {} };
1686
has filter_check  => 1;
1687
has 'reserved_word_quote';
- dbi_option attribute is re...
Yuki Kimoto authored on 2011-10-05
1688
has dbi_option => sub { {} };
1689
has default_dbi_option => sub {
1690
    warn "default_dbi_option is DEPRECATED! use default_option instead";
1691
    return shift->default_option;
1692
};
1693

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

            
- method method of DBIx::Cus...
Yuki Kimoto authored on 2011-10-10
1706
# DEPRECATED!
1707
sub method {
1708
    warn "method is DEPRECATED! use helper instead";
1709
    return shift->helper(@_);
1710
}
- update_param is DEPRECATED...
Yuki Kimoto authored on 2011-10-04
1711

            
1712
# DEPRECATED!
1713
sub assign_param {
1714
    my $self = shift;
1715
    warn "assing_param is DEPRECATED! use assign_clause instead";
1716
    return $self->assign_clause(@_);
1717
}
1718

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

            
1729
    return $tag;
1730
}
1731

            
updated pod
Yuki Kimoto authored on 2011-06-21
1732
# DEPRECATED!
1733
sub create_query {
1734
    warn "create_query is DEPRECATED! use query option of each method";
1735
    shift->_create_query(@_);
1736
}
1737

            
cleanup
Yuki Kimoto authored on 2011-06-13
1738
# DEPRECATED!
1739
sub apply_filter {
1740
    my $self = shift;
1741
    
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
1742
    warn "apply_filter is DEPRECATED!";
cleanup
Yuki Kimoto authored on 2011-06-13
1743
    return $self->_apply_filter(@_);
1744
}
1745

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

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

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

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

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

            
cleanup
Yuki Kimoto authored on 2011-06-08
1784
# DEPRECATED!
1785
sub update_at {
1786
    my $self = shift;
1787

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

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

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

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

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

            
cleanup
Yuki Kimoto authored on 2011-01-25
1875
# DEPRECATED!
cleanup
Yuki Kimoto authored on 2011-01-12
1876
sub default_fetch_filter {
1877
    my $self = shift;
added warnings
Yuki Kimoto authored on 2011-06-07
1878

            
cleanup
Yuki Kimoto authored on 2011-06-13
1879
    warn "default_fetch_filter is DEPRECATED!";
cleanup
Yuki Kimoto authored on 2011-01-12
1880
    
1881
    if (@_) {
many changed
Yuki Kimoto authored on 2011-01-23
1882
        my $fname = $_[0];
1883

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

            
- update_param is DEPRECATED...
Yuki Kimoto authored on 2011-10-04
1900
# DEPRECATED!
1901
sub insert_param {
1902
    my $self = shift;
1903
    warn "insert_param is DEPRECATED! use values_clause instead";
1904
    return $self->values_clause(@_);
1905
}
1906

            
- renamed update_param to up...
Yuki Kimoto authored on 2011-03-30
1907
# DEPRECATED!
- update_param_tag is DEPREC...
Yuki Kimoto authored on 2011-06-07
1908
sub insert_param_tag {
1909
    warn "insert_param_tag is DEPRECATED! " .
1910
         "use insert_param instead!";
1911
    return shift->insert_param(@_);
- renamed update_param to up...
Yuki Kimoto authored on 2011-03-30
1912
}
1913

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

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

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

            
removed reconnect method
yuki-kimoto authored on 2010-05-28
1958
=head1 NAME
1959

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

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

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

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

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

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

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

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

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

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

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

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

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

            
micro optimization
Yuki Kimoto authored on 2011-07-30
2033
Named place holder support
2034

            
2035
=item *
2036

            
cleanup
Yuki Kimoto authored on 2011-07-29
2037
Model support
2038

            
2039
=item *
2040

            
2041
Connection manager support
2042

            
2043
=item *
pod fix
Yuki Kimoto authored on 2011-01-21
2044

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

            
2049
=item *
2050

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

            
2053
=item *
2054

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

            
2057
=back
pod fix
Yuki Kimoto authored on 2011-01-21
2058

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

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

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

            
micro optimization
Yuki Kimoto authored on 2011-07-30
2066
Module documentations - 
cleanup
Yuki Kimoto authored on 2011-07-29
2067
L<DBIx::Custom::Result>,
2068
L<DBIx::Custom::Query>,
2069
L<DBIx::Custom::Where>,
2070
L<DBIx::Custom::Model>,
2071
L<DBIx::Custom::Order>
updated document
yuki-kimoto authored on 2010-08-08
2072

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

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

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

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

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

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

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

            
2098
    my $dbi = DBIx::Custom->connect(
2099
      dsn => $dsn, user => $user, password => $password, connector => 1);
2100
    
2101
    my $connector = $dbi->connector; # DBIx::Connector
2102

            
2103
Note that L<DBIx::Connector> must be installed.
2104

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

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

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

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

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

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

            
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
2120
    {
2121
        RaiseError => 1,
2122
        PrintError => 0,
2123
        AutoCommit => 1,
2124
    }
packaging one directory
yuki-kimoto authored on 2009-11-16
2125

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

            
2128
    my $exclude_table = $dbi->exclude_table;
2129
    $dbi = $dbi->exclude_table(qr/pg_/);
2130

            
2131
Excluded table regex.
2132
C<each_column>, C<each_table>, C<type_rule>,
2133
and C<setup_model> methods ignore matching tables.
2134

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

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

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

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

            
2144
    my $last_sql = $dbi->last_sql;
2145
    $dbi = $dbi->last_sql($last_sql);
2146

            
2147
Get last successed SQL executed by C<execute> method.
2148

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

            
2151
    my $now = $dbi->now;
2152
    $dbi = $dbi->now($now);
2153

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

            
2156
    sub {
2157
        my ($sec, $min, $hour, $mday, $mon, $year) = localtime;
2158
        $mon++;
2159
        $year += 1900;
2160
        return sprintf("%04d-%02d-%02d %02d:%02d:%02d");
2161
    }
2162

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

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

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

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

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

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

            
2177
    my $option = $dbi->option;
2178
    $dbi = $dbi->option($option);
2179

            
2180
L<DBI> option, used when C<connect> method is executed.
2181
Each value in option override the value of C<default_option>.
2182

            
cleanup
yuki-kimoto authored on 2010-10-17
2183
=head2 C<password>
2184

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

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

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

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

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

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

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

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

            
cleanup
Yuki Kimoto authored on 2011-07-30
2205
You can set quote pair.
2206

            
2207
    $dbi->quote('[]');
2208

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

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

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

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

            
fixed pod
Yuki Kimoto authored on 2011-09-27
2218
    my $safety_character = $dbi->safety_character;
2219
    $dbi = $dbi->safety_character($character);
update pod
Yuki Kimoto authored on 2011-01-27
2220

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

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

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

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

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

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

            
2237
    my $tag_parse = $dbi->tag_parse(0);
2238
    $dbi = $dbi->tag_parse;
2239

            
2240
Enable DEPRECATED tag parsing functionality, default to 1.
2241
If you want to disable tag parsing functionality, set to 0.
2242

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

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

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

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

            
2252
    my $user_column_info = $dbi->user_column_info;
2253
    $dbi = $dbi->user_column_info($user_column_info);
2254

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

            
2257
    [
2258
        {table => 'book', column => 'title', info => {...}},
2259
        {table => 'author', column => 'name', info => {...}}
2260
    ]
2261

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

            
2264
    my $user_column_info
2265
      = $dbi->get_column_info(exclude_table => qr/^system/);
2266
    $dbi->user_column_info($user_column_info);
2267

            
2268
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
2269
to find column info. this is very fast.
- added EXPERIMENTAL get_col...
Yuki Kimoto authored on 2011-08-16
2270

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

            
2273
    my $user_table_info = $dbi->user_table_info;
2274
    $dbi = $dbi->user_table_info($user_table_info);
2275

            
2276
You can set the following data.
2277

            
2278
    [
2279
        {table => 'book', info => {...}},
2280
        {table => 'author', info => {...}}
2281
    ]
2282

            
2283
Usually, you can set return value of C<get_table_info>.
2284

            
2285
    my $user_table_info = $dbi->get_table_info(exclude => qr/^system/);
2286
    $dbi->user_table_info($user_table_info);
2287

            
2288
If C<user_table_info> is set, C<each_table> use C<user_table_info>
2289
to find table info.
2290

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
2327
Create column clause. The follwoing column clause is created.
2328

            
2329
    book.author as "book.author",
2330
    book.title as "book.title"
2331

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

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

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

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

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

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

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

            
2359
Get rows count.
2360

            
2361
Options is same as C<select> method's ones.
2362

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

            
adeed EXPERIMENTAL DBIx::Cus...
Yuki Kimoto authored on 2011-03-29
2365
    my $model = $dbi->create_model(
removed EXPERIMETNAL flag fr...
Yuki Kimoto authored on 2011-03-25
2366
        table => 'book',
2367
        primary_key => 'id',
2368
        join => [
2369
            'inner join company on book.comparny_id = company.id'
2370
        ],
2371
    );
2372

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

            
2376
   $dbi->model('book')->select(...);
2377

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

            
2380
    my $dbh = $dbi->dbh;
2381

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

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

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

            
2389
Execute delete statement.
2390

            
2391
The following opitons are available.
2392

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

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

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

            
2400
=item C<id>
2401

            
2402
    id => 4
2403
    id => [4, 5]
2404

            
2405
ID corresponding to C<primary_key>.
2406
You can delete rows by C<id> and C<primary_key>.
2407

            
2408
    $dbi->delete(
fixed pod
Yuki Kimoto authored on 2011-10-20
2409
        primary_key => ['id1', 'id2'],
added EXPERIMENTAL find_tabl...
Yuki Kimoto authored on 2011-08-16
2410
        id => [4, 5],
2411
        table => 'book',
2412
    );
2413

            
2414
The above is same as the followin one.
2415

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

            
2418
=item C<prefix>
2419

            
2420
    prefix => 'some'
2421

            
2422
prefix before table name section.
2423

            
2424
    delete some from book
2425

            
2426
=item C<table>
2427

            
2428
    table => 'book'
2429

            
2430
Table name.
2431

            
2432
=item C<where>
2433

            
2434
Same as C<select> method's C<where> option.
2435

            
2436
=back
2437

            
2438
=head2 C<delete_all>
2439

            
2440
    $dbi->delete_all(table => $table);
2441

            
2442
Execute delete statement for all rows.
2443
Options is same as C<delete>.
2444

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

            
2447
    $dbi->each_column(
2448
        sub {
2449
            my ($dbi, $table, $column, $column_info) = @_;
2450
            
2451
            my $type = $column_info->{TYPE_NAME};
2452
            
2453
            if ($type eq 'DATE') {
2454
                # ...
2455
            }
2456
        }
2457
    );
2458

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

            
2464
If C<user_column_info> is set, C<each_column> method use C<user_column_info>
2465
infromation, you can improve the performance of C<each_column> in
2466
the following way.
2467

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

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

            
2474
    $dbi->each_table(
2475
        sub {
2476
            my ($dbi, $table, $table_info) = @_;
2477
            
2478
            my $table_name = $table_info->{TABLE_NAME};
2479
        }
2480
    );
2481

            
improved pod
Yuki Kimoto authored on 2011-10-14
2482
Iterate all table informationsfrom in database.
2483
Argument is callback which is executed when one table is found.
2484
Callback receive three arguments, C<DBIx::Custom object>, C<table name>,
2485
C<table information>.
2486

            
2487
If C<user_table_info> is set, C<each_table> method use C<user_table_info>
2488
infromation, you can improve the performance of C<each_table> in
2489
the following way.
2490

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

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

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

            
2502
    my $result = $dbi->execute(
2503
      "select * from book where title = :book.title and author like :book.author",
2504
      {'book.title' => 'Perl', 'book.author' => '%Ken%'}
update pod
Yuki Kimoto authored on 2011-03-13
2505
    );
2506

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

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

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

            
micro optimization
Yuki Kimoto authored on 2011-07-30
2524
    # Original
added EXPERIMENTAL parameter...
Yuki Kimoto authored on 2011-07-29
2525
    select * from book where :title{=} and :author{like}
2526
    
micro optimization
Yuki Kimoto authored on 2011-07-30
2527
    # Replaced
update pod
Yuki Kimoto authored on 2011-03-13
2528
    select * from where title = ? and author like ?;
2529

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

            
2534
    select * from where title = "aa\\:bb";
2535

            
cleanup
Yuki Kimoto authored on 2011-10-20
2536
B<OPTIONS>
2537

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

            
2540
=over 4
2541

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

            
2544
You can filter sql after the sql is build.
2545

            
2546
    after_build_sql => $code_ref
2547

            
2548
The following one is one example.
2549

            
2550
    $dbi->select(
2551
        table => 'book',
2552
        column => 'distinct(name)',
2553
        after_build_sql => sub {
2554
            "select count(*) from ($_[0]) as t1"
2555
        }
2556
    );
2557

            
2558
The following SQL is executed.
2559

            
2560
    select count(*) from (select distinct(name) from book) as t1;
2561

            
cleanup
Yuki Kimoto authored on 2011-10-20
2562
=item C<append>
2563

            
2564
    append => 'order by name'
2565

            
2566
Append some statement after SQL.
2567

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

            
2570
Specify database bind data type.
2571

            
2572
    bind_type => [image => DBI::SQL_BLOB]
2573
    bind_type => [[qw/image audio/] => DBI::SQL_BLOB]
2574

            
2575
This is used to bind parameter by C<bind_param> of statment handle.
2576

            
2577
    $sth->bind_param($pos, $value, DBI::SQL_BLOB);
2578

            
update pod
Yuki Kimoto authored on 2011-03-13
2579
=item C<filter>
updated pod
Yuki Kimoto authored on 2011-06-09
2580
    
2581
    filter => {
2582
        title  => sub { uc $_[0] }
2583
        author => sub { uc $_[0] }
2584
    }
update pod
Yuki Kimoto authored on 2011-03-13
2585

            
updated pod
Yuki Kimoto authored on 2011-06-09
2586
    # Filter name
2587
    filter => {
2588
        title  => 'upper_case',
2589
        author => 'upper_case'
2590
    }
2591
        
2592
    # At once
2593
    filter => [
2594
        [qw/title author/]  => sub { uc $_[0] }
2595
    ]
2596

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

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

            
2604
    query => 1
2605

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

            
DBIx::Custom::Query is DEPRE...
Yuki Kimoto authored on 2011-11-15
2609
    my $sql = $query->{sql};
2610
    my $columns = $query->{columns};
Added execute method's query...
Yuki Kimoto authored on 2011-07-30
2611
    
- DBIx::Custom::QueryBuilder...
Yuki Kimoto authored on 2011-11-04
2612
=item C<reuse>
2613
    
2614
    reuse => $hash_ref
2615

            
2616
Reuse query object if the hash reference variable is set.
2617
    
2618
    my $queries = {};
2619
    $dbi->execute($sql, $param, reuse => $queries);
2620

            
2621
This will improved performance when you want to execute same query repeatedly
2622
because generally creating query object is slow.
2623

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

            
cleanup
Yuki Kimoto authored on 2011-10-20
2626
    primary_key => 'id'
2627
    primary_key => ['id1', 'id2']
2628

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

            
updated pod
Yuki Kimoto authored on 2011-06-09
2631
=item C<table>
2632
    
2633
    table => 'author'
2634

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

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

            
updated pod
Yuki Kimoto authored on 2011-06-21
2642
    # Same
2643
    $dbi->execute(
2644
      "select * from book where title = :book.title and author = :book.author",
2645
      {title => 'Perl', author => 'Ken');
added EXPERIMENTAL execute()...
Yuki Kimoto authored on 2011-06-09
2646

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

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

            
2651
Table alias. Key is real table name, value is alias table name.
2652
If you set C<table_alias>, you can enable C<into1> and C<into2> type rule
2653
on alias table name.
2654

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

            
2657
    type_rule_off => 1
2658

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

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

            
2663
    type_rule1_off => 1
2664

            
2665
Turn C<into1> type rule off.
2666

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

            
2669
    type_rule2_off => 1
2670

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

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

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

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

            
2679
get column infomation except for one which match C<exclude_table> pattern.
2680

            
2681
    [
2682
        {table => 'book', column => 'title', info => {...}},
2683
        {table => 'author', column => 'name' info => {...}}
2684
    ]
2685

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

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

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

            
2692
    [
2693
        {table => 'book', info => {...}},
2694
        {table => 'author', info => {...}}
2695
    ]
add experimental update_at()...
Yuki Kimoto authored on 2011-02-21
2696

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

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

            
2701
    $dbi->helper(
2702
        find_or_create   => sub {
2703
            my $self = shift;
2704
            
2705
            # Process
update_or_insert method's re...
Yuki Kimoto authored on 2011-10-27
2706
        },
2707
        ...
removed EXPERIMETNAL flag fr...
Yuki Kimoto authored on 2011-10-19
2708
    );
2709

            
2710
Register helper. These helper is called directly from L<DBIx::Custom> object.
2711

            
2712
    $dbi->find_or_create;
2713

            
cleanup
yuki-kimoto authored on 2010-10-17
2714
=head2 C<insert>
2715

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

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

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

            
2724
    {date => \"NOW()"}
2725

            
cleanup
Yuki Kimoto authored on 2011-10-20
2726
B<options>
2727

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

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

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

            
2735
    created_at => 'created_datetime'
2736

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

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

            
updated document
Yuki Kimoto authored on 2011-06-09
2743
    id => 4
2744
    id => [4, 5]
update pod
Yuki Kimoto authored on 2011-03-13
2745

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

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

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

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

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

            
2765
    prefix => 'or replace'
2766

            
2767
prefix before table name section
2768

            
2769
    insert or replace into book
2770

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

            
2773
    table => 'book'
2774

            
2775
Table name.
2776

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

            
2779
This option is same as C<update> method C<updated_at> option.
2780

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

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

            
2785
placeholder wrapped string.
2786

            
2787
If the following statement
2788

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

            
2792
is executed, the following SQL is executed.
2793

            
2794
    insert into book price values ( ? + 5 );
2795

            
update pod
Yuki Kimoto authored on 2011-03-13
2796
=back
2797

            
2798
=over 4
2799

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

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

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

            
update pod
Yuki Kimoto authored on 2011-03-13
2807
    lib / MyModel.pm
2808
        / MyModel / book.pm
2809
                  / company.pm
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
2810

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

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

            
2815
    package MyModel;
updated pod
Yuki Kimoto authored on 2011-06-21
2816
    use DBIx::Custom::Model -base;
update pod
Yuki Kimoto authored on 2011-03-13
2817
    
2818
    1;
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
2819

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

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

            
update pod
Yuki Kimoto authored on 2011-03-13
2824
    package MyModel::book;
updated pod
Yuki Kimoto authored on 2011-06-21
2825
    use MyModel -base;
update pod
Yuki Kimoto authored on 2011-03-13
2826
    
2827
    1;
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
2828

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

            
update pod
Yuki Kimoto authored on 2011-03-13
2831
    package MyModel::company;
updated pod
Yuki Kimoto authored on 2011-06-21
2832
    use MyModel -base;
update pod
Yuki Kimoto authored on 2011-03-13
2833
    
2834
    1;
2835
    
updated pod
Yuki Kimoto authored on 2011-06-21
2836
MyModel::book and MyModel::company is included by C<include_model>.
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
2837

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

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

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

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

            
2847
    my $like_value = $dbi->like_value
2848

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

            
2851
    sub { "%$_[0]%" }
2852

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

            
2855
    my $mapper = $dbi->mapper(param => $param);
2856

            
2857
Create a new L<DBIx::Custom::Mapper> object.
2858

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

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

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

            
2865
    {key1 => [1, 1], key2 => 2}
2866

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

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

            
2871
    my $model = $dbi->model('book');
2872

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

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

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

            
2880
Create column clause for myself. The follwoing column clause is created.
2881

            
2882
    book.author as author,
2883
    book.title as title
2884

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

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

            
2894
Create a new L<DBIx::Custom> object.
2895

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

            
2898
    my $not_exists = $dbi->not_exists;
2899

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

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

            
2905
    my $order = $dbi->order;
2906

            
2907
Create a new L<DBIx::Custom::Order> object.
2908

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

            
2911
    my $quooted = $dbi->q("title");
2912

            
2913
Quote string by value of C<quote>.
2914

            
cleanup
yuki-kimoto authored on 2010-10-17
2915
=head2 C<register_filter>
2916

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

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

            
select method column option ...
Yuki Kimoto authored on 2011-02-22
2934
    my $result = $dbi->select(
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
2935
        table  => 'book',
2936
        column => ['author', 'title'],
2937
        where  => {author => 'Ken'},
select method column option ...
Yuki Kimoto authored on 2011-02-22
2938
    );
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
2939
    
updated document
Yuki Kimoto authored on 2011-06-09
2940
Execute select statement.
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
2941

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

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

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

            
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
2949
=item C<column>
2950
    
updated document
Yuki Kimoto authored on 2011-06-09
2951
    column => 'author'
2952
    column => ['author', 'title']
2953

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

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

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

            
updated document
Yuki Kimoto authored on 2011-06-09
2962
    column => [
updated pod
Yuki Kimoto authored on 2011-06-07
2963
        {book => [qw/author title/]},
2964
        {person => [qw/name age/]}
updated document
Yuki Kimoto authored on 2011-06-09
2965
    ]
updated pod
Yuki Kimoto authored on 2011-06-07
2966

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

            
2969
    book.author as "book.author",
2970
    book.title as "book.title",
2971
    person.name as "person.name",
2972
    person.age as "person.age"
2973

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

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

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

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

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

            
2987
    id => 4
2988
    id => [4, 5]
2989

            
2990
ID corresponding to C<primary_key>.
2991
You can select rows by C<id> and C<primary_key>.
2992

            
2993
    $dbi->select(
fixed pod
Yuki Kimoto authored on 2011-10-20
2994
        primary_key => ['id1', 'id2'],
updated document
Yuki Kimoto authored on 2011-06-09
2995
        id => [4, 5],
2996
        table => 'book'
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
2997
    );
2998

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

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

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

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

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

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

            
3020
    prefix => 'SQL_CALC_FOUND_ROWS'
3021

            
3022
Prefix of column cluase
3023

            
3024
    select SQL_CALC_FOUND_ROWS title, author from book;
3025

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

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

            
3036
    $dbi->select(
3037
        table => 'book',
cleanup
Yuki Kimoto authored on 2011-06-13
3038
        column => ['company.location_id as location_id'],
update pod
Yuki Kimoto authored on 2011-03-12
3039
        where => {'company.name' => 'Orange'},
3040
        join => [
3041
            'left outer join company on book.company_id = company.id',
3042
            'left outer join location on company.location_id = location.id'
3043
        ]
3044
    );
3045

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

            
cleanup
Yuki Kimoto authored on 2011-06-13
3049
    select company.location_id as location_id
update pod
Yuki Kimoto authored on 2011-03-12
3050
    from book
3051
      left outer join company on book.company_id = company.id
cleanup
Yuki Kimoto authored on 2011-06-13
3052
    where company.name = ?;
update pod
Yuki Kimoto authored on 2011-03-12
3053

            
added join new syntax
Yuki Kimoto authored on 2011-07-28
3054
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
3055
the join clause correctly.
added join new syntax
Yuki Kimoto authored on 2011-07-28
3056

            
3057
    $dbi->select(
3058
        table => 'book',
3059
        column => ['company.location_id as location_id'],
3060
        where => {'company.name' => 'Orange'},
3061
        join => [
3062
            {
3063
                clause => 'left outer join location on company.location_id = location.id',
3064
                table => ['company', 'location']
3065
            }
3066
        ]
3067
    );
3068

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

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

            
updated document
Yuki Kimoto authored on 2011-06-09
3073
Table name.
updated pod
Yuki Kimoto authored on 2011-06-08
3074

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

            
cleanup
Yuki Kimoto authored on 2011-10-20
3095
Where clause. See L<DBIx::Custom::Where>.
updated document
Yuki Kimoto authored on 2011-06-09
3096
    
update pod
Yuki Kimoto authored on 2011-03-12
3097
=back
cleanup
Yuki Kimoto authored on 2011-03-08
3098

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

            
3101
    $dbi->setup_model;
3102

            
3103
Setup all model objects.
3104
C<columns> of model object is automatically set, parsing database information.
3105

            
3106
=head2 C<type_rule>
3107

            
3108
    $dbi->type_rule(
3109
        into1 => {
3110
            date => sub { ... },
3111
            datetime => sub { ... }
3112
        },
3113
        into2 => {
3114
            date => sub { ... },
3115
            datetime => sub { ... }
3116
        },
3117
        from1 => {
3118
            # DATE
3119
            9 => sub { ... },
3120
            # DATETIME or TIMESTAMP
3121
            11 => sub { ... },
3122
        }
3123
        from2 => {
3124
            # DATE
3125
            9 => sub { ... },
3126
            # DATETIME or TIMESTAMP
3127
            11 => sub { ... },
3128
        }
3129
    );
3130

            
3131
Filtering rule when data is send into and get from database.
3132
This has a little complex problem.
3133

            
3134
In C<into1> and C<into2> you can specify
3135
type name as same as type name defined
3136
by create table, such as C<DATETIME> or C<DATE>.
3137

            
3138
Note that type name and data type don't contain upper case.
3139
If these contain upper case charactor, you convert it to lower case.
3140

            
3141
C<into2> is executed after C<into1>.
3142

            
3143
Type rule of C<into1> and C<into2> is enabled on the following
3144
column name.
3145

            
3146
=over 4
3147

            
3148
=item 1. column name
3149

            
3150
    issue_date
3151
    issue_datetime
3152

            
3153
This need C<table> option in each method.
3154

            
3155
=item 2. table name and column name, separator is dot
3156

            
3157
    book.issue_date
3158
    book.issue_datetime
3159

            
3160
=back
3161

            
3162
You get all type name used in database by C<available_typename>.
3163

            
3164
    print $dbi->available_typename;
3165

            
3166
In C<from1> and C<from2> you specify data type, not type name.
3167
C<from2> is executed after C<from1>.
3168
You get all data type by C<available_datatype>.
3169

            
3170
    print $dbi->available_datatype;
3171

            
3172
You can also specify multiple types at once.
3173

            
3174
    $dbi->type_rule(
3175
        into1 => [
3176
            [qw/DATE DATETIME/] => sub { ... },
3177
        ],
3178
    );
3179

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

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

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

            
3186
If you want to set constant value to row data, use scalar reference
3187
as parameter value.
3188

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

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

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

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

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

            
updated document
Yuki Kimoto authored on 2011-06-09
3200
    id => 4
3201
    id => [4, 5]
- insert, insert_at, update,...
Yuki Kimoto authored on 2011-06-08
3202

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

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

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

            
updated document
Yuki Kimoto authored on 2011-06-09
3215
    $dbi->update(
3216
        {title => 'Perl', author => 'Ken'}
3217
        where => {id1 => 4, id2 => 5},
3218
        table => 'book'
3219
    );
update pod
Yuki Kimoto authored on 2011-03-13
3220

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

            
3223
    prefix => 'or replace'
3224

            
3225
prefix before table name section
3226

            
3227
    update or replace book
3228

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

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

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

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

            
3237
Same as C<select> method's C<where> option.
3238

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

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

            
3243
placeholder wrapped string.
3244

            
3245
If the following statement
3246

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

            
3250
is executed, the following SQL is executed.
3251

            
3252
    update book set price =  ? + 5;
3253

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

            
3256
    updated_at => 'updated_datetime'
3257

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

            
updated pod
Yuki Kimoto authored on 2011-06-08
3262
=back
update pod
Yuki Kimoto authored on 2011-03-13
3263

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

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

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

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

            
- removed DEPRECATED status ...
Yuki Kimoto authored on 2011-10-11
3286
Update or insert.
3287

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

            
- EXPERIMENTAL update_or_ins...
Yuki Kimoto authored on 2011-10-27
3292
C<OPTIONS>
3293

            
3294
C<update_or_insert> method use all common option
3295
in C<select>, C<update>, C<delete>, and has the following new ones.
3296

            
3297
=over 4
3298

            
3299
=item C<option>
3300

            
3301
    option => {
3302
        select => {
3303
            append => '...'
3304
        },
3305
        insert => {
3306
            prefix => '...'
3307
        },
3308
        update => {
3309
            filter => {}
3310
        }
3311
    }
- removed DEPRECATED status ...
Yuki Kimoto authored on 2011-10-11
3312

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

            
3316
=over 4
3317

            
3318
=item C<select_option>
3319

            
3320
    select_option => {append => 'for update'}
3321

            
3322
select method option,
3323
select method is used to check the row is already exists.
3324

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

            
3327
    $dbi->show_datatype($table);
3328

            
3329
Show data type of the columns of specified table.
3330

            
3331
    book
3332
    title: 5
3333
    issue_date: 91
3334

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

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

            
3339
    $dbi->show_tables;
3340

            
3341
Show tables.
3342

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

            
3345
    $dbi->show_typename($table);
3346

            
3347
Show type name of the columns of specified table.
3348

            
3349
    book
3350
    title: varchar
3351
    issue_date: date
3352

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

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

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

            
3359
Create values clause.
3360

            
3361
    (title, author) values (title = :title, age = :age);
3362

            
3363
You can use this in insert statement.
3364

            
3365
    my $insert_sql = "insert into book $values_clause";
3366

            
3367
=head2 C<where>
3368

            
3369
    my $where = $dbi->where(
3370
        clause => ['and', 'title = :title', 'author = :author'],
3371
        param => {title => 'Perl', author => 'Ken'}
3372
    );
3373

            
3374
Create a new L<DBIx::Custom::Where> object.
3375

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

            
3378
=head2 C<DBIX_CUSTOM_DEBUG>
3379

            
3380
If environment variable C<DBIX_CUSTOM_DEBUG> is set to true,
3381
executed SQL and bind values are printed to STDERR.
3382

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

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

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

            
3389
If you set DBIX_CUSTOM_TAG_PARSE to 0, tag parsing is off.
3390

            
3391
=head2 C<DBIX_CUSTOM_DISABLE_MODEL_EXECUTE>
3392

            
3393
If you set DBIX_CUSTOM_DISABLE_MODEL_EXECUTE to 1,
3394
L<DBIx::Custom::Model> execute method call L<DBIx::Custom> execute.
3395

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

            
3398
L<DBIx::Custom>
3399

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

            
3454
L<DBIx::Custom::Model>
3455

            
DBIx::Custom::Query filters ...
Yuki Kimoto authored on 2011-07-30
3456
    # Attribute methods
DBIx::Custom::Model execute ...
Yuki Kimoto authored on 2011-11-01
3457
    execute # will be removed at 2017/1/1
- method method of DBIx::Cus...
Yuki Kimoto authored on 2011-10-10
3458
    method # will be removed at 2017/1/1
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3459
    filter # will be removed at 2017/1/1
3460
    name # will be removed at 2017/1/1
3461
    type # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3462

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

            
3465
This module is DEPRECATED! # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3466
    
DBIx::Custom::Query filters ...
Yuki Kimoto authored on 2011-07-30
3467
    # Attribute methods
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3468
    default_filter # will be removed at 2017/1/1
DBIx::Custom::Query filters ...
Yuki Kimoto authored on 2011-07-30
3469
    table # will be removed at 2017/1/1
3470
    filters # will be removed at 2017/1/1
3471
    
3472
    # Methods
3473
    filter # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3474

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

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

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

            
3504
L<DBIx::Custom::Tag>
3505

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

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

            
3510
    # Other
3511
    prepend method array reference receiving
3512
      $order->prepend(['book', 'desc']); # will be removed 2017/1/1
3513

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

            
3516
If a functionality is DEPRECATED, you can know it by DEPRECATED warnings
3517
except for attribute method.
3518
You can check all DEPRECATED functionalities by document.
3519
DEPRECATED functionality is removed after five years,
3520
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
3521
I extend one year each time he tell me it.
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3522

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

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

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

            
3529
C<< <kimoto.yuki at gmail.com> >>
3530

            
3531
L<http://github.com/yuki-kimoto/DBIx-Custom>
3532

            
removed reconnect method
yuki-kimoto authored on 2010-05-28
3533
=head1 AUTHOR
3534

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

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

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

            
3541
This program is free software; you can redistribute it and/or modify it
3542
under the same terms as Perl itself.
3543

            
3544
=cut