DBIx-Custom / lib / DBIx / Custom.pm /
Newer Older
3479 lines | 89.959kb
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-10-22
4
our $VERSION = '0.1734';
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/;
packaging one directory
yuki-kimoto authored on 2009-11-16
21

            
added environment variable D...
Yuki Kimoto authored on 2011-04-02
22
use constant DEBUG => $ENV{DBIX_CUSTOM_DEBUG} || 0;
improved debug message
Yuki Kimoto authored on 2011-05-23
23
use constant DEBUG_ENCODING => $ENV{DBIX_CUSTOM_DEBUG_ENCODING} || 'UTF-8';
added environment variable D...
Yuki Kimoto authored on 2011-04-02
24

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

            
added EXPERIMENTAL system_ta...
Yuki Kimoto authored on 2011-08-10
70
sub available_datatype {
test cleanup
Yuki Kimoto authored on 2011-08-10
71
    my $self = shift;
72
    
added EXPERIMENTAL system_ta...
Yuki Kimoto authored on 2011-08-10
73
    my $data_types = '';
cleanup
Yuki Kimoto authored on 2011-10-21
74
    for my $i (-1000 .. 1000) {
added EXPERIMENTAL system_ta...
Yuki Kimoto authored on 2011-08-10
75
         my $type_info = $self->dbh->type_info($i);
76
         my $data_type = $type_info->{DATA_TYPE};
77
         my $type_name = $type_info->{TYPE_NAME};
78
         $data_types .= "$data_type ($type_name)\n"
79
           if defined $data_type;
80
    }
81
    return "Data Type maybe equal to Type Name" unless $data_types;
82
    $data_types = "Data Type (Type name)\n" . $data_types;
83
    return $data_types;
84
}
85

            
86
sub available_typename {
87
    my $self = shift;
88
    
89
    # Type Names
90
    my $type_names = {};
91
    $self->each_column(sub {
92
        my ($self, $table, $column, $column_info) = @_;
93
        $type_names->{$column_info->{TYPE_NAME}} = 1
94
          if $column_info->{TYPE_NAME};
95
    });
96
    my @output = sort keys %$type_names;
97
    unshift @output, "Type Name";
98
    return join "\n", @output;
test cleanup
Yuki Kimoto authored on 2011-08-10
99
}
100

            
added helper method
yuki-kimoto authored on 2010-10-17
101
our $AUTOLOAD;
102
sub AUTOLOAD {
103
    my $self = shift;
104

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

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

            
- update_param is DEPRECATED...
Yuki Kimoto authored on 2011-10-04
122
sub assign_clause {
updated pod
Yuki Kimoto authored on 2011-09-02
123
    my ($self, $param, $opts) = @_;
124
    
125
    my $wrap = $opts->{wrap} || {};
added EXPERIMENTAL assign_ta...
Yuki Kimoto authored on 2011-04-26
126
    
127
    # Create set tag
128
    my @params;
129
    my $safety = $self->safety_character;
cleanup
Yuki Kimoto authored on 2011-10-21
130
    for my $column (sort keys %$param) {
added EXPERIMENTAL assign_ta...
Yuki Kimoto authored on 2011-04-26
131
        croak qq{"$column" is not safety column name } . _subname
132
          unless $column =~ /^[$safety\.]+$/;
added quote method's two cha...
Yuki Kimoto authored on 2011-07-29
133
        my $column_quote = $self->_q($column);
134
        $column_quote =~ s/\./$self->_q(".")/e;
updated pod
Yuki Kimoto authored on 2011-09-02
135
        my $func = $wrap->{$column} || sub { $_[0] };
136
        push @params,
137
          ref $param->{$column} eq 'SCALAR' ? "$column_quote = " . ${$param->{$column}}
138
        : "$column_quote = " . $func->(":$column");
added EXPERIMENTAL assign_ta...
Yuki Kimoto authored on 2011-04-26
139
    }
140
    my $tag = join(', ', @params);
141
    
142
    return $tag;
143
}
144

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

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

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

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

            
cleanup
Yuki Kimoto authored on 2011-10-21
232
sub delete {
233
    my ($self, %opt) = @_;
234
    warn "delete method where_param option is DEPRECATED!"
235
      if $opt{where_param};
236
    
cleanup
Yuki Kimoto authored on 2011-10-21
237
    # Don't allow delete all rows
cleanup
Yuki Kimoto authored on 2011-10-21
238
    croak qq{delete method where or id option must be specified } . _subname
239
      if !$opt{where} && !defined $opt{id} && !$opt{allow_delete_all};
240
    
241
    # Where
242
    my $where = defined $opt{id}
moved DBIx::Custom::Guide to...
Yuki Kimoto authored on 2011-10-22
243
           ? $self->_id_to_param(delete $opt{id}, $opt{primary_key}, $opt{table})
cleanup
Yuki Kimoto authored on 2011-10-21
244
           : $opt{where};
245
    my $w = $self->_where_clause_and_param($where, $opt{where_param});
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};
cleanup
Yuki Kimoto authored on 2011-10-21
250
    $sql .= "from " . $self->_q($opt{table}) . " $w->{clause} ";
packaging one directory
yuki-kimoto authored on 2009-11-16
251
    
252
    # Execute query
cleanup
Yuki Kimoto authored on 2011-10-21
253
    return $self->execute($sql, $w->{param}, %opt);
packaging one directory
yuki-kimoto authored on 2009-11-16
254
}
255

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

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

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

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

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

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

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

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

            
352
    # Options
execute method can second ar...
Yuki Kimoto authored on 2011-06-09
353
    my $param;
354
    $param = shift if @_ % 2;
cleanup
Yuki Kimoto authored on 2011-10-21
355
    my %opt = @_;
moved DBIx::Custom::Guide to...
Yuki Kimoto authored on 2011-10-22
356
    warn "sqlfilter option is DEPRECATED" if $opt{sqlfilter};
357
    $param ||= $opt{param} || {};
cleanup
Yuki Kimoto authored on 2011-10-21
358
    my $tables = $opt{table} || [];
cleanup
Yuki Kimoto authored on 2011-04-02
359
    $tables = [$tables] unless ref $tables eq 'ARRAY';
moved DBIx::Custom::Guide to...
Yuki Kimoto authored on 2011-10-22
360
    my $filter = _array_to_hash($opt{filter});
refactoring delete and delet...
yuki-kimoto authored on 2010-04-28
361
    
moved DBIx::Custom::Guide to...
Yuki Kimoto authored on 2011-10-22
362
    # Append
363
    $sql .= $opt{append} if defined $opt{append} && !ref $sql;
364
    
365
    # Query
added EXPERIMENTAL reuse_sth...
Yuki Kimoto authored on 2011-10-22
366
    my $query = ref $sql ? $sql
367
      : $self->_create_query($sql,$opt{after_build_sql} || $opt{sqlfilter},
368
          $opt{reuse_sth});
added EXPERIMENTAL last_sql ...
Yuki Kimoto authored on 2011-07-11
369
    
370
    # Save query
371
    $self->last_sql($query->sql);
372

            
moved DBIx::Custom::Guide to...
Yuki Kimoto authored on 2011-10-22
373
    # Return query
374
    return $query if $opt{query};
micro optimization
Yuki Kimoto authored on 2011-07-30
375
    
moved DBIx::Custom::Guide to...
Yuki Kimoto authored on 2011-10-22
376
    # Merge query filter(DEPRECATED!)
DBIx::Custom::Query filter m...
Yuki Kimoto authored on 2011-07-30
377
    $filter ||= $query->{filter} || {};
all filter can receive array...
Yuki Kimoto authored on 2011-02-25
378
    
cleanup
Yuki Kimoto authored on 2011-04-02
379
    # Tables
DBIx::Custom::Query tables a...
Yuki Kimoto authored on 2011-07-30
380
    unshift @$tables, @{$query->{tables} || []};
micro optimization
Yuki Kimoto authored on 2011-07-30
381
    my $main_table = @{$tables}[-1];
moved DBIx::Custom::Guide to...
Yuki Kimoto authored on 2011-10-22
382
    
383
    # Convert id to parameter
384
    if (defined $opt{id}) {
385
        my $id_param = $self->_id_to_param($opt{id}, $opt{primary_key}, $main_table);
fixed id option bug when col...
Yuki Kimoto authored on 2011-10-10
386
        $param = $self->merge_param($id_param, $param);
387
    }
micro optimization
Yuki Kimoto authored on 2011-07-30
388
    
moved DBIx::Custom::Guide to...
Yuki Kimoto authored on 2011-10-22
389
    # Cleanup tables(DEPRECATED!)
micro optimization
Yuki Kimoto authored on 2011-07-30
390
    $tables = $self->_remove_duplicate_table($tables, $main_table)
391
      if @$tables > 1;
cleanup
Yuki Kimoto authored on 2011-04-02
392
    
added type_rule into logic
Yuki Kimoto authored on 2011-06-09
393
    # Type rule
EXPERIMENTAL type_rule argum...
Yuki Kimoto authored on 2011-06-17
394
    my $type_filters = {};
moved DBIx::Custom::Guide to...
Yuki Kimoto authored on 2011-10-22
395
    unless ($opt{type_rule_off}) {
396
        my $type_rule_off_parts = {
397
            1 => $opt{type_rule1_off},
398
            2 => $opt{type_rule2_off}
399
        };
cleanup
Yuki Kimoto authored on 2011-10-21
400
        for my $i (1, 2) {
micro optimization
Yuki Kimoto authored on 2011-07-30
401
            unless ($type_rule_off_parts->{$i}) {
402
                $type_filters->{$i} = {};
moved DBIx::Custom::Guide to...
Yuki Kimoto authored on 2011-10-22
403
                my $table_alias = $opt{table_alias} || {};
cleanup
Yuki Kimoto authored on 2011-10-21
404
                for my $alias (keys %$table_alias) {
micro optimization
Yuki Kimoto authored on 2011-07-30
405
                    my $table = $table_alias->{$alias};
added EXPERIMENTAL execute m...
Yuki Kimoto authored on 2011-06-27
406
                    
cleanup
Yuki Kimoto authored on 2011-10-21
407
                    for my $column (keys %{$self->{"_into$i"}{key}{$table} || {}}) {
micro optimization
Yuki Kimoto authored on 2011-07-30
408
                        $type_filters->{$i}->{"$alias.$column"} = $self->{"_into$i"}{key}{$table}{$column};
EXPERIMENTAL type_rule argum...
Yuki Kimoto authored on 2011-06-17
409
                    }
410
                }
micro optimization
Yuki Kimoto authored on 2011-07-30
411
                $type_filters->{$i} = {%{$type_filters->{$i}}, %{$self->{"_into$i"}{key}{$main_table} || {}}}
412
                  if $main_table;
added EXPERIMENTAL execute()...
Yuki Kimoto authored on 2011-06-09
413
            }
added type_rule into logic
Yuki Kimoto authored on 2011-06-09
414
        }
415
    }
cleanup
Yuki Kimoto authored on 2011-04-02
416
    
moved DBIx::Custom::Guide to...
Yuki Kimoto authored on 2011-10-22
417
    # Applied filter(DEPRECATED!)
micro optimization
Yuki Kimoto authored on 2011-07-30
418
    if ($self->{filter}{on}) {
419
        my $applied_filter = {};
cleanup
Yuki Kimoto authored on 2011-10-21
420
        for my $table (@$tables) {
micro optimization
Yuki Kimoto authored on 2011-07-30
421
            $applied_filter = {
422
                %$applied_filter,
423
                %{$self->{filter}{out}->{$table} || {}}
424
            }
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
425
        }
micro optimization
Yuki Kimoto authored on 2011-07-30
426
        $filter = {%$applied_filter, %$filter};
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
427
    }
428
    
cleanup
Yuki Kimoto authored on 2011-04-02
429
    # Replace filter name to code
cleanup
Yuki Kimoto authored on 2011-10-21
430
    for my $column (keys %$filter) {
cleanup
Yuki Kimoto authored on 2011-04-02
431
        my $name = $filter->{$column};
432
        if (!defined $name) {
433
            $filter->{$column} = undef;
renamed auto_filter to apply...
Yuki Kimoto authored on 2011-01-12
434
        }
cleanup
Yuki Kimoto authored on 2011-04-02
435
        elsif (ref $name ne 'CODE') {
cleanup
Yuki Kimoto authored on 2011-04-25
436
          croak qq{Filter "$name" is not registered" } . _subname
cleanup
Yuki Kimoto authored on 2011-04-02
437
            unless exists $self->filters->{$name};
438
          $filter->{$column} = $self->filters->{$name};
cleanup
Yuki Kimoto authored on 2010-12-21
439
        }
440
    }
packaging one directory
yuki-kimoto authored on 2009-11-16
441
    
cleanup
Yuki Kimoto authored on 2011-04-02
442
    # Create bind values
moved DBIx::Custom::Guide to...
Yuki Kimoto authored on 2011-10-22
443
    my $bind = $self->_create_bind_values($param, $query->columns,
444
      $filter, $type_filters, _array_to_hash($opt{bind_type} || $opt{type}));
added EXPERIMENTAL execute m...
Yuki Kimoto authored on 2011-08-14
445

            
cleanup
yuki-kimoto authored on 2010-10-17
446
    # Execute
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
447
    my $sth = $query->sth;
cleanup
yuki-kimoto authored on 2010-10-17
448
    my $affected;
cleanup
Yuki Kimoto authored on 2011-03-21
449
    eval {
micro optimization
Yuki Kimoto authored on 2011-10-22
450
        $sth->bind_param($_ + 1, $bind->[$_]->{value},
451
            $bind->[$_]->{bind_type} ? $bind->[$_]->{bind_type} : ())
452
          for (0 .. @$bind - 1);
cleanup
Yuki Kimoto authored on 2011-03-21
453
        $affected = $sth->execute;
454
    };
improved error messages
Yuki Kimoto authored on 2011-04-18
455
    
micro optimization
Yuki Kimoto authored on 2011-07-30
456
    $self->_croak($@, qq{. Following SQL is executed.\n}
457
      . qq{$query->{sql}\n} . _subname) if $@;
cleanup
yuki-kimoto authored on 2010-10-17
458
    
improved debug message
Yuki Kimoto authored on 2011-05-23
459
    # DEBUG message
460
    if (DEBUG) {
461
        print STDERR "SQL:\n" . $query->sql . "\n";
462
        my @output;
cleanup
Yuki Kimoto authored on 2011-10-21
463
        for my $b (@$bind) {
improved debug message
Yuki Kimoto authored on 2011-05-23
464
            my $value = $b->{value};
465
            $value = 'undef' unless defined $value;
466
            $value = encode(DEBUG_ENCODING(), $value)
467
              if utf8::is_utf8($value);
468
            push @output, $value;
469
        }
470
        print STDERR "Bind values: " . join(', ', @output) . "\n\n";
471
    }
added environment variable D...
Yuki Kimoto authored on 2011-04-02
472
    
cleanup
Yuki Kimoto authored on 2011-04-02
473
    # Select statement
cleanup
yuki-kimoto authored on 2010-10-17
474
    if ($sth->{NUM_OF_FIELDS}) {
475
        
moved DBIx::Custom::Guide to...
Yuki Kimoto authored on 2011-10-22
476
        # Filter(DEPRECATED!)
cleanup
Yuki Kimoto authored on 2011-04-02
477
        my $filter = {};
micro optimization
Yuki Kimoto authored on 2011-07-30
478
        if ($self->{filter}{on}) {
479
            $filter->{in}  = {};
480
            $filter->{end} = {};
481
            push @$tables, $main_table if $main_table;
cleanup
Yuki Kimoto authored on 2011-10-21
482
            for my $table (@$tables) {
483
                for my $way (qw/in end/) {
moved DBIx::Custom::Guide to...
Yuki Kimoto authored on 2011-10-22
484
                    $filter->{$way} = {%{$filter->{$way}},
485
                      %{$self->{filter}{$way}{$table} || {}}};
micro optimization
Yuki Kimoto authored on 2011-07-30
486
                }
cleanup
Yuki Kimoto authored on 2011-04-02
487
            }
cleanup
Yuki Kimoto authored on 2011-01-12
488
        }
489
        
490
        # Result
491
        my $result = $self->result_class->new(
added type_rule method and f...
Yuki Kimoto authored on 2011-06-09
492
            sth => $sth,
sub module use DBIx::Custom ...
Yuki Kimoto authored on 2011-08-02
493
            dbi => $self,
cleanup
Yuki Kimoto authored on 2011-01-12
494
            default_filter => $self->{default_in_filter},
added type_rule method and f...
Yuki Kimoto authored on 2011-06-09
495
            filter => $filter->{in} || {},
496
            end_filter => $filter->{end} || {},
EXPERIMENTAL type_rule argum...
Yuki Kimoto authored on 2011-06-17
497
            type_rule => {
498
                from1 => $self->type_rule->{from1},
499
                from2 => $self->type_rule->{from2}
500
            },
cleanup
yuki-kimoto authored on 2010-10-17
501
        );
502
        return $result;
503
    }
cleanup
Yuki Kimoto authored on 2011-04-02
504
    # Not select statement
505
    else { return $affected }
cleanup
yuki-kimoto authored on 2010-10-17
506
}
507

            
added test
Yuki Kimoto authored on 2011-08-16
508
sub get_table_info {
cleanup
Yuki Kimoto authored on 2011-10-21
509
    my ($self, %opt) = @_;
added EXPERIMENTAL find_tabl...
Yuki Kimoto authored on 2011-08-16
510
    
cleanup
Yuki Kimoto authored on 2011-10-21
511
    my $exclude = delete $opt{exclude};
512
    croak qq/"$_" is wrong option/ for keys %opt;
added EXPERIMENTAL find_tabl...
Yuki Kimoto authored on 2011-08-16
513
    
added test
Yuki Kimoto authored on 2011-08-16
514
    my $table_info = [];
515
    $self->each_table(
516
        sub { push @$table_info, {table => $_[1], info => $_[2] } },
517
        exclude => $exclude
518
    );
added EXPERIMENTAL find_tabl...
Yuki Kimoto authored on 2011-08-16
519
    
cleanup test
Yuki Kimoto authored on 2011-08-16
520
    return [sort {$a->{table} cmp $b->{table} } @$table_info];
added EXPERIMENTAL find_tabl...
Yuki Kimoto authored on 2011-08-16
521
}
522

            
- added EXPERIMENTAL get_col...
Yuki Kimoto authored on 2011-08-16
523
sub get_column_info {
cleanup
Yuki Kimoto authored on 2011-10-21
524
    my ($self, %opt) = @_;
- added EXPERIMENTAL get_col...
Yuki Kimoto authored on 2011-08-16
525
    
cleanup
Yuki Kimoto authored on 2011-10-21
526
    my $exclude_table = delete $opt{exclude_table};
527
    croak qq/"$_" is wrong option/ for keys %opt;
- added EXPERIMENTAL get_col...
Yuki Kimoto authored on 2011-08-16
528
    
529
    my $column_info = [];
530
    $self->each_column(
531
        sub { push @$column_info, {table => $_[1], column => $_[2], info => $_[3] } },
532
        exclude_table => $exclude_table
533
    );
534
    
535
    return [
536
      sort {$a->{table} cmp $b->{table} || $a->{column} cmp $b->{column} }
cleanup
Yuki Kimoto authored on 2011-08-16
537
        @$column_info];
- added EXPERIMENTAL get_col...
Yuki Kimoto authored on 2011-08-16
538
}
539

            
- method method of DBIx::Cus...
Yuki Kimoto authored on 2011-10-10
540
sub helper {
541
    my $self = shift;
542
    
543
    # Register method
544
    my $methods = ref $_[0] eq 'HASH' ? $_[0] : {@_};
545
    $self->{_methods} = {%{$self->{_methods} || {}}, %$methods};
546
    
547
    return $self;
548
}
549

            
cleanup
yuki-kimoto authored on 2010-10-17
550
sub insert {
- insert, insert_at, update,...
Yuki Kimoto authored on 2011-06-08
551
    my $self = shift;
added EXPERIMENTAL reserved_...
Yuki Kimoto authored on 2011-03-30
552
    
cleanup
Yuki Kimoto authored on 2011-10-21
553
    # Options
cleanup
Yuki Kimoto authored on 2011-10-21
554
    my $param = @_ % 2 ? shift : undef;
cleanup
Yuki Kimoto authored on 2011-10-21
555
    my %opt = @_;
556
    warn "insert method param option is DEPRECATED" if $opt{param};
557
    $param ||= delete $opt{param} || {};
- added EXPERIMENTAL timesta...
Yuki Kimoto authored on 2011-09-02
558
    
559
    # Timestamp
cleanup
Yuki Kimoto authored on 2011-10-21
560
    if ($opt{timestamp} && (my $insert_timestamp = $self->insert_timestamp)) {
- added EXPERIMENTAL update_...
Yuki Kimoto authored on 2011-09-12
561
        my $columns = $insert_timestamp->[0];
562
        $columns = [$columns] unless ref $columns eq 'ARRAY';
563
        my $value = $insert_timestamp->[1];
564
        $value = $value->() if ref $value eq 'CODE';
565
        $param->{$_} = $value for @$columns;
- added EXPERIMENTAL timesta...
Yuki Kimoto authored on 2011-09-02
566
    }
cleanup
Yuki Kimoto authored on 2011-10-21
567
    
568
    # Merge id to parameter
569
    $param = $self->merge_param(
moved DBIx::Custom::Guide to...
Yuki Kimoto authored on 2011-10-22
570
        $self->_id_to_param(delete $opt{id}, $opt{primary_key}), $param)
cleanup
Yuki Kimoto authored on 2011-10-21
571
      if defined $opt{id};
cleanup
Yuki Kimoto authored on 2011-10-21
572
    
cleanup
Yuki Kimoto authored on 2011-04-02
573
    # Insert statement
cleanup
Yuki Kimoto authored on 2011-10-21
574
    my $sql = "insert ";
cleanup
Yuki Kimoto authored on 2011-10-21
575
    $sql .= "$opt{prefix} " if defined $opt{prefix};
576
    $sql .= "into " . $self->_q($opt{table}) . " "
577
      . $self->values_clause($param, {wrap => $opt{wrap}}) . " ";
packaging one directory
yuki-kimoto authored on 2009-11-16
578
    
579
    # Execute query
cleanup
Yuki Kimoto authored on 2011-10-21
580
    return $self->execute($sql, $param, %opt);
packaging one directory
yuki-kimoto authored on 2009-11-16
581
}
582

            
- added EXPERIMENTAL update_...
Yuki Kimoto authored on 2011-09-12
583
sub insert_timestamp {
584
    my $self = shift;
585
    
586
    if (@_) {
587
        $self->{insert_timestamp} = [@_];
588
        
589
        return $self;
590
    }
591
    return $self->{insert_timestamp};
592
}
593

            
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
594
sub include_model {
595
    my ($self, $name_space, $model_infos) = @_;
596
    
cleanup
Yuki Kimoto authored on 2011-04-02
597
    # Name space
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
598
    $name_space ||= '';
cleanup
Yuki Kimoto authored on 2011-04-02
599
    
600
    # Get Model infomations
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
601
    unless ($model_infos) {
cleanup
Yuki Kimoto authored on 2011-04-02
602

            
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
603
        # Load name space module
cleanup
Yuki Kimoto authored on 2011-04-25
604
        croak qq{"$name_space" is invalid class name } . _subname
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
605
          if $name_space =~ /[^\w:]/;
606
        eval "use $name_space";
cleanup
Yuki Kimoto authored on 2011-04-25
607
        croak qq{Name space module "$name_space.pm" is needed. $@ }
608
            . _subname
improved error messages
Yuki Kimoto authored on 2011-04-18
609
          if $@;
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
610
        
611
        # Search model modules
612
        my $path = $INC{"$name_space.pm"};
613
        $path =~ s/\.pm$//;
614
        opendir my $dh, $path
cleanup
Yuki Kimoto authored on 2011-04-25
615
          or croak qq{Can't open directory "$path": $! } . _subname
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
616
        $model_infos = [];
617
        while (my $module = readdir $dh) {
618
            push @$model_infos, $module
619
              if $module =~ s/\.pm$//;
620
        }
621
        close $dh;
622
    }
623
    
cleanup
Yuki Kimoto authored on 2011-04-02
624
    # Include models
cleanup
Yuki Kimoto authored on 2011-10-21
625
    for my $model_info (@$model_infos) {
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
626
        
cleanup
Yuki Kimoto authored on 2011-04-02
627
        # Load model
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
628
        my $model_class;
629
        my $model_name;
630
        my $model_table;
631
        if (ref $model_info eq 'HASH') {
632
            $model_class = $model_info->{class};
633
            $model_name  = $model_info->{name};
634
            $model_table = $model_info->{table};
635
            
636
            $model_name  ||= $model_class;
637
            $model_table ||= $model_name;
638
        }
removed EXPERIMETNAL flag fr...
Yuki Kimoto authored on 2011-03-25
639
        else { $model_class = $model_name = $model_table = $model_info }
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
640
        my $mclass = "${name_space}::$model_class";
cleanup
Yuki Kimoto authored on 2011-04-25
641
        croak qq{"$mclass" is invalid class name } . _subname
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
642
          if $mclass =~ /[^\w:]/;
643
        unless ($mclass->can('isa')) {
644
            eval "use $mclass";
cleanup
Yuki Kimoto authored on 2011-04-25
645
            croak "$@ " . _subname if $@;
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
646
        }
647
        
cleanup
Yuki Kimoto authored on 2011-04-02
648
        # Create model
cleanup
Yuki Kimoto authored on 2011-10-21
649
        my $opt = {};
650
        $opt->{model_class} = $mclass if $mclass;
651
        $opt->{name}        = $model_name if $model_name;
652
        $opt->{table}       = $model_table if $model_table;
653
        $self->create_model($opt);
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
654
    }
655
    
656
    return $self;
657
}
658

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

            
added DBIx::Custom::Mapper
Yuki Kimoto authored on 2011-08-26
661
sub mapper {
662
    my $self = shift;
663
    return DBIx::Custom::Mapper->new(@_);
664
}
665

            
added EXPERIMENTAL updat_par...
Yuki Kimoto authored on 2011-03-30
666
sub merge_param {
667
    my ($self, @params) = @_;
668
    
cleanup
Yuki Kimoto authored on 2011-04-02
669
    # Merge parameters
fixed merge_param bug
Yuki Kimoto authored on 2011-05-23
670
    my $merge = {};
cleanup
Yuki Kimoto authored on 2011-10-21
671
    for my $param (@params) {
672
        for my $column (keys %$param) {
fixed merge_param bug
Yuki Kimoto authored on 2011-05-23
673
            my $param_is_array = ref $param->{$column} eq 'ARRAY' ? 1 : 0;
674
            
675
            if (exists $merge->{$column}) {
676
                $merge->{$column} = [$merge->{$column}]
677
                  unless ref $merge->{$column} eq 'ARRAY';
678
                push @{$merge->{$column}},
679
                  ref $param->{$column} ? @{$param->{$column}} : $param->{$column};
added EXPERIMENTAL updat_par...
Yuki Kimoto authored on 2011-03-30
680
            }
681
            else {
fixed merge_param bug
Yuki Kimoto authored on 2011-05-23
682
                $merge->{$column} = $param->{$column};
added EXPERIMENTAL updat_par...
Yuki Kimoto authored on 2011-03-30
683
            }
684
        }
685
    }
686
    
fixed merge_param bug
Yuki Kimoto authored on 2011-05-23
687
    return $merge;
added EXPERIMENTAL updat_par...
Yuki Kimoto authored on 2011-03-30
688
}
689

            
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
690
sub model {
691
    my ($self, $name, $model) = @_;
692
    
cleanup
Yuki Kimoto authored on 2011-04-02
693
    # Set model
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
694
    if ($model) {
695
        $self->models->{$name} = $model;
696
        return $self;
697
    }
698
    
699
    # Check model existance
cleanup
Yuki Kimoto authored on 2011-04-25
700
    croak qq{Model "$name" is not included } . _subname
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
701
      unless $self->models->{$name};
702
    
cleanup
Yuki Kimoto authored on 2011-04-02
703
    # Get model
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
704
    return $self->models->{$name};
705
}
706

            
cleanup
Yuki Kimoto authored on 2011-03-21
707
sub mycolumn {
708
    my ($self, $table, $columns) = @_;
709
    
cleanup
Yuki Kimoto authored on 2011-04-02
710
    # Create column clause
711
    my @column;
cleanup
Yuki Kimoto authored on 2011-03-21
712
    $columns ||= [];
added quote method's two cha...
Yuki Kimoto authored on 2011-07-29
713
    push @column, $self->_q($table) . "." . $self->_q($_) .
714
      " as " . $self->_q($_)
715
      for @$columns;
cleanup
Yuki Kimoto authored on 2011-03-21
716
    
717
    return join (', ', @column);
718
}
719

            
added dbi_options attribute
kimoto authored on 2010-12-20
720
sub new {
721
    my $self = shift->SUPER::new(@_);
722
    
cleanup
Yuki Kimoto authored on 2011-04-02
723
    # Check attributes
added dbi_options attribute
kimoto authored on 2010-12-20
724
    my @attrs = keys %$self;
cleanup
Yuki Kimoto authored on 2011-10-21
725
    for my $attr (@attrs) {
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-08-20
726
        croak qq{Invalid attribute: "$attr" } . _subname
added dbi_options attribute
kimoto authored on 2010-12-20
727
          unless $self->can($attr);
728
    }
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
729

            
added EXPERIMENTAL system_ta...
Yuki Kimoto authored on 2011-08-10
730
    # DEPRECATED
cleanup
Yuki Kimoto authored on 2011-08-13
731
    $self->{_tags} = {
added EXPERIMENTAL system_ta...
Yuki Kimoto authored on 2011-08-10
732
        '?'     => \&DBIx::Custom::Tag::placeholder,
733
        '='     => \&DBIx::Custom::Tag::equal,
734
        '<>'    => \&DBIx::Custom::Tag::not_equal,
735
        '>'     => \&DBIx::Custom::Tag::greater_than,
736
        '<'     => \&DBIx::Custom::Tag::lower_than,
737
        '>='    => \&DBIx::Custom::Tag::greater_than_equal,
738
        '<='    => \&DBIx::Custom::Tag::lower_than_equal,
739
        'like'  => \&DBIx::Custom::Tag::like,
740
        'in'    => \&DBIx::Custom::Tag::in,
741
        'insert_param' => \&DBIx::Custom::Tag::insert_param,
742
        'update_param' => \&DBIx::Custom::Tag::update_param
cleanup
Yuki Kimoto authored on 2011-08-13
743
    };
744
    
745
    return $self;
746
}
747

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

            
750
sub order {
751
    my $self = shift;
752
    return DBIx::Custom::Order->new(dbi => $self, @_);
added EXPERIMENTAL system_ta...
Yuki Kimoto authored on 2011-08-10
753
}
754

            
cleanup
yuki-kimoto authored on 2010-10-17
755
sub register_filter {
cleanup
Yuki Kimoto authored on 2011-04-02
756
    my $self = shift;
cleanup
yuki-kimoto authored on 2010-10-17
757
    
758
    # Register filter
759
    my $filters = ref $_[0] eq 'HASH' ? $_[0] : {@_};
cleanup
Yuki Kimoto authored on 2011-04-02
760
    $self->filters({%{$self->filters}, %$filters});
cleanup
yuki-kimoto authored on 2010-10-17
761
    
cleanup
Yuki Kimoto authored on 2011-04-02
762
    return $self;
cleanup
yuki-kimoto authored on 2010-10-17
763
}
packaging one directory
yuki-kimoto authored on 2009-11-16
764

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

            
cleanup
Yuki Kimoto authored on 2011-10-21
768
    # Options
cleanup
Yuki Kimoto authored on 2011-10-21
769
    my $tables = ref $opt{table} eq 'ARRAY' ? $opt{table}
770
               : defined $opt{table} ? [$opt{table}]
added table not specified ex...
Yuki Kimoto authored on 2011-01-21
771
               : [];
cleanup
Yuki Kimoto authored on 2011-10-21
772
    $opt{table} = $tables;
cleanup
Yuki Kimoto authored on 2011-10-21
773
    my $where_param = $opt{where_param} || delete $opt{param} || {};
select_at is DEPRECATED! use...
Yuki Kimoto authored on 2011-06-08
774
    
cleanup
Yuki Kimoto authored on 2011-03-09
775
    # Add relation tables(DEPRECATED!);
cleanup
Yuki Kimoto authored on 2011-10-21
776
    if ($opt{relation}) {
777
        warn "select() relation option is DEPRECATED!";
778
        $self->_add_relation_table($tables, $opt{relation});
779
    }
packaging one directory
yuki-kimoto authored on 2009-11-16
780
    
cleanup
Yuki Kimoto authored on 2011-04-02
781
    # Select statement
micro optimization
Yuki Kimoto authored on 2011-09-30
782
    my $sql = 'select ';
packaging one directory
yuki-kimoto authored on 2009-11-16
783
    
added EXPERIMENTAL select pr...
Yuki Kimoto authored on 2011-06-13
784
    # Prefix
cleanup
Yuki Kimoto authored on 2011-10-21
785
    $sql .= "$opt{prefix} " if defined $opt{prefix};
added EXPERIMENTAL select pr...
Yuki Kimoto authored on 2011-06-13
786
    
cleanup
Yuki Kimoto authored on 2011-10-21
787
    # Column
cleanup
Yuki Kimoto authored on 2011-10-21
788
    if (defined $opt{column}) {
789
        my $columns
790
          = ref $opt{column} eq 'ARRAY' ? $opt{column} : [$opt{column}];
cleanup
Yuki Kimoto authored on 2011-10-21
791
        for my $column (@$columns) {
- select() column option can...
Yuki Kimoto authored on 2011-06-08
792
            if (ref $column eq 'HASH') {
EXPERIMTANL column method th...
Yuki Kimoto authored on 2011-06-13
793
                $column = $self->column(%$column) if ref $column eq 'HASH';
- select() column option can...
Yuki Kimoto authored on 2011-06-08
794
            }
795
            elsif (ref $column eq 'ARRAY') {
- select method column optio...
Yuki Kimoto authored on 2011-07-11
796
                if (@$column == 3 && $column->[1] eq 'as') {
797
                    warn "[COLUMN, as => ALIAS] is DEPRECATED! use [COLUMN => ALIAS]";
798
                    splice @$column, 1, 1;
799
                }
800
                
added quote method's two cha...
Yuki Kimoto authored on 2011-07-29
801
                $column = join(' ', $column->[0], 'as', $self->_q($column->[1]));
- select() column option can...
Yuki Kimoto authored on 2011-06-08
802
            }
cleanup
Yuki Kimoto authored on 2011-04-02
803
            unshift @$tables, @{$self->_search_tables($column)};
micro optimization
Yuki Kimoto authored on 2011-09-30
804
            $sql .= "$column, ";
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
805
        }
micro optimization
Yuki Kimoto authored on 2011-09-30
806
        $sql =~ s/, $/ /;
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
807
    }
micro optimization
Yuki Kimoto authored on 2011-09-30
808
    else { $sql .= '* ' }
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
809
    
810
    # Table
micro optimization
Yuki Kimoto authored on 2011-09-30
811
    $sql .= 'from ';
cleanup
Yuki Kimoto authored on 2011-10-21
812
    if ($opt{relation}) {
cleanup
Yuki Kimoto authored on 2011-03-30
813
        my $found = {};
cleanup
Yuki Kimoto authored on 2011-10-21
814
        for my $table (@$tables) {
micro optimization
Yuki Kimoto authored on 2011-09-30
815
            $sql .= $self->_q($table) . ', ' unless $found->{$table};
cleanup
Yuki Kimoto authored on 2011-03-30
816
            $found->{$table} = 1;
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-14
817
        }
packaging one directory
yuki-kimoto authored on 2009-11-16
818
    }
moved DBIx::Custom::Guide to...
Yuki Kimoto authored on 2011-10-22
819
    else { $sql .= $self->_q($tables->[-1] || '') . ' ' }
micro optimization
Yuki Kimoto authored on 2011-09-30
820
    $sql =~ s/, $/ /;
cleanup
Yuki Kimoto authored on 2011-10-21
821
    croak "select method table option must be specified " . _subname
improved error messages
Yuki Kimoto authored on 2011-04-18
822
      unless $tables->[-1];
cleanup
Yuki Kimoto authored on 2011-04-01
823

            
cleanup
Yuki Kimoto authored on 2011-04-02
824
    # Add tables in parameter
DEPRECATED select() param op...
Yuki Kimoto authored on 2011-04-25
825
    unshift @$tables,
826
            @{$self->_search_tables(join(' ', keys %$where_param) || '')};
fixed some select() join opi...
Yuki Kimoto authored on 2011-03-09
827
    
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
828
    # Where
cleanup
Yuki Kimoto authored on 2011-10-21
829
    my $where = defined $opt{id}
moved DBIx::Custom::Guide to...
Yuki Kimoto authored on 2011-10-22
830
              ? $self->_id_to_param(delete $opt{id}, $opt{primary_key}, $tables->[-1])
cleanup
Yuki Kimoto authored on 2011-10-21
831
              : $opt{where};
832
    my $w = $self->_where_clause_and_param($where, $where_param);
remove experimental DBIx::Cu...
Yuki Kimoto authored on 2011-03-08
833
    
fixed some select() join opi...
Yuki Kimoto authored on 2011-03-09
834
    # Add table names in where clause
cleanup
Yuki Kimoto authored on 2011-10-21
835
    unshift @$tables, @{$self->_search_tables($w->{clause})};
remove experimental DBIx::Cu...
Yuki Kimoto authored on 2011-03-08
836
    
cleanup
Yuki Kimoto authored on 2011-10-21
837
    # Join statement
cleanup
Yuki Kimoto authored on 2011-10-21
838
    $self->_push_join(\$sql, $opt{join}, $tables) if defined $opt{join};
remove experimental DBIx::Cu...
Yuki Kimoto authored on 2011-03-08
839
    
cleanup
Yuki Kimoto authored on 2011-03-09
840
    # Add where clause
cleanup
Yuki Kimoto authored on 2011-10-21
841
    $sql .= "$w->{clause} ";
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
842
    
cleanup
Yuki Kimoto authored on 2011-03-08
843
    # Relation(DEPRECATED!);
cleanup
Yuki Kimoto authored on 2011-10-21
844
    $self->_push_relation(\$sql, $tables, $opt{relation}, $w->{clause} eq '' ? 1 : 0)
cleanup
Yuki Kimoto authored on 2011-10-21
845
      if $opt{relation};
cleanup
Yuki Kimoto authored on 2011-03-08
846
    
packaging one directory
yuki-kimoto authored on 2009-11-16
847
    # Execute query
cleanup
Yuki Kimoto authored on 2011-10-21
848
    my $result = $self->execute($sql, $w->{param}, %opt);
packaging one directory
yuki-kimoto authored on 2009-11-16
849
    
850
    return $result;
851
}
852

            
add experimental setup_model...
Yuki Kimoto authored on 2011-02-21
853
sub setup_model {
854
    my $self = shift;
855
    
cleanup
Yuki Kimoto authored on 2011-04-02
856
    # Setup model
add experimental setup_model...
Yuki Kimoto authored on 2011-02-21
857
    $self->each_column(
858
        sub {
859
            my ($self, $table, $column, $column_info) = @_;
860
            if (my $model = $self->models->{$table}) {
861
                push @{$model->columns}, $column;
862
            }
863
        }
864
    );
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-22
865
    return $self;
add experimental setup_model...
Yuki Kimoto authored on 2011-02-21
866
}
867

            
update pod
Yuki Kimoto authored on 2011-08-10
868
sub show_datatype {
869
    my ($self, $table) = @_;
870
    croak "Table name must be specified" unless defined $table;
871
    print "$table\n";
872
    
873
    my $result = $self->select(table => $table, where => "'0' <> '0'");
874
    my $sth = $result->sth;
875

            
876
    my $columns = $sth->{NAME};
877
    my $data_types = $sth->{TYPE};
878
    
879
    for (my $i = 0; $i < @$columns; $i++) {
880
        my $column = $columns->[$i];
881
        my $data_type = $data_types->[$i];
882
        print "$column: $data_type\n";
883
    }
884
}
885

            
886
sub show_typename {
887
    my ($self, $t) = @_;
888
    croak "Table name must be specified" unless defined $t;
889
    print "$t\n";
890
    
891
    $self->each_column(sub {
892
        my ($self, $table, $column, $infos) = @_;
893
        return unless $table eq $t;
894
        my $typename = $infos->{TYPE_NAME};
895
        print "$column: $typename\n";
896
    });
897
    
898
    return $self;
899
}
900

            
test cleanup
Yuki Kimoto authored on 2011-08-15
901
sub show_tables {
902
    my $self = shift;
903
    
904
    my %tables;
905
    $self->each_table(sub { $tables{$_[1]}++ });
906
    print join("\n", sort keys %tables) . "\n";
907
    return $self;
908
}
909

            
added type_rule method and f...
Yuki Kimoto authored on 2011-06-09
910
sub type_rule {
911
    my $self = shift;
912
    
913
    if (@_) {
changed type_rule arguments ...
Yuki Kimoto authored on 2011-06-12
914
        my $type_rule = ref $_[0] eq 'HASH' ? $_[0] : {@_};
fixed bug that type_rule fro...
Yuki Kimoto authored on 2011-06-13
915
        
916
        # Into
cleanup
Yuki Kimoto authored on 2011-10-21
917
        for my $i (1 .. 2) {
EXPERIMENTAL type_rule argum...
Yuki Kimoto authored on 2011-06-17
918
            my $into = "into$i";
cleanup
Yuki Kimoto authored on 2011-08-16
919
            my $exists_into = exists $type_rule->{$into};
EXPERIMENTAL type_rule argum...
Yuki Kimoto authored on 2011-06-17
920
            $type_rule->{$into} = _array_to_hash($type_rule->{$into});
921
            $self->{type_rule} = $type_rule;
922
            $self->{"_$into"} = {};
cleanup
Yuki Kimoto authored on 2011-10-21
923
            for my $type_name (keys %{$type_rule->{$into} || {}}) {
EXPERIMENTAL type_rule argum...
Yuki Kimoto authored on 2011-06-17
924
                croak qq{type name of $into section must be lower case}
925
                  if $type_name =~ /[A-Z]/;
926
            }
cleanup
Yuki Kimoto authored on 2011-08-16
927
            
EXPERIMENTAL type_rule argum...
Yuki Kimoto authored on 2011-06-17
928
            $self->each_column(sub {
929
                my ($dbi, $table, $column, $column_info) = @_;
930
                
931
                my $type_name = lc $column_info->{TYPE_NAME};
932
                if ($type_rule->{$into} &&
933
                    (my $filter = $type_rule->{$into}->{$type_name}))
type_rule can receive filter...
Yuki Kimoto authored on 2011-06-12
934
                {
EXPERIMENTAL type_rule argum...
Yuki Kimoto authored on 2011-06-17
935
                    return unless exists $type_rule->{$into}->{$type_name};
936
                    if  (defined $filter && ref $filter ne 'CODE') 
937
                    {
938
                        my $fname = $filter;
939
                        croak qq{Filter "$fname" is not registered" } . _subname
940
                          unless exists $self->filters->{$fname};
941
                        
942
                        $filter = $self->filters->{$fname};
943
                    }
944

            
micro optimization
Yuki Kimoto authored on 2011-07-30
945
                    $self->{"_$into"}{key}{$table}{$column} = $filter;
946
                    $self->{"_$into"}{dot}{"$table.$column"} = $filter;
EXPERIMENTAL type_rule argum...
Yuki Kimoto authored on 2011-06-17
947
                }
948
            });
949
        }
950

            
951
        # From
cleanup
Yuki Kimoto authored on 2011-10-21
952
        for my $i (1 .. 2) {
EXPERIMENTAL type_rule argum...
Yuki Kimoto authored on 2011-06-17
953
            $type_rule->{"from$i"} = _array_to_hash($type_rule->{"from$i"});
cleanup
Yuki Kimoto authored on 2011-10-21
954
            for my $data_type (keys %{$type_rule->{"from$i"} || {}}) {
EXPERIMENTAL type_rule argum...
Yuki Kimoto authored on 2011-06-17
955
                croak qq{data type of from$i section must be lower case or number}
956
                  if $data_type =~ /[A-Z]/;
957
                my $fname = $type_rule->{"from$i"}{$data_type};
958
                if (defined $fname && ref $fname ne 'CODE') {
type_rule can receive filter...
Yuki Kimoto authored on 2011-06-12
959
                    croak qq{Filter "$fname" is not registered" } . _subname
960
                      unless exists $self->filters->{$fname};
961
                    
EXPERIMENTAL type_rule argum...
Yuki Kimoto authored on 2011-06-17
962
                    $type_rule->{"from$i"}{$data_type} = $self->filters->{$fname};
type_rule can receive filter...
Yuki Kimoto authored on 2011-06-12
963
                }
fixed bug that type_rule fro...
Yuki Kimoto authored on 2011-06-13
964
            }
965
        }
966
        
added type_rule method and f...
Yuki Kimoto authored on 2011-06-09
967
        return $self;
968
    }
969
    
970
    return $self->{type_rule} || {};
971
}
972

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

            
cleanup
Yuki Kimoto authored on 2011-10-21
976
    # Options
cleanup
Yuki Kimoto authored on 2011-10-21
977
    my $param = @_ % 2 ? shift : undef;
cleanup
Yuki Kimoto authored on 2011-10-21
978
    my %opt = @_;
cleanup
Yuki Kimoto authored on 2011-10-21
979
    warn "update param option is DEPRECATED!" if $opt{param};
cleanup
Yuki Kimoto authored on 2011-10-21
980
    warn "update method where_param option is DEPRECATED!"
981
      if $opt{where_param};
cleanup
Yuki Kimoto authored on 2011-10-21
982
    $param ||= $opt{param} || {};
- added EXPERIMENTAL timesta...
Yuki Kimoto authored on 2011-09-02
983
    
cleanup
Yuki Kimoto authored on 2011-10-21
984
    # Don't allow update all rows
985
    croak qq{update method where option must be specified } . _subname
986
      if !$opt{where} && !defined $opt{id} && !$opt{allow_update_all};
987
    
- added EXPERIMENTAL timesta...
Yuki Kimoto authored on 2011-09-02
988
    # Timestamp
cleanup
Yuki Kimoto authored on 2011-10-21
989
    if ($opt{timestamp} && (my $update_timestamp = $self->update_timestamp)) {
- added EXPERIMENTAL update_...
Yuki Kimoto authored on 2011-09-12
990
        my $columns = $update_timestamp->[0];
991
        $columns = [$columns] unless ref $columns eq 'ARRAY';
992
        my $value = $update_timestamp->[1];
993
        $value = $value->() if ref $value eq 'CODE';
994
        $param->{$_} = $value for @$columns;
- added EXPERIMENTAL timesta...
Yuki Kimoto authored on 2011-09-02
995
    }
996

            
cleanup
Yuki Kimoto authored on 2011-10-21
997
    # Assign clause
cleanup
Yuki Kimoto authored on 2011-10-21
998
    my $assign_clause = $self->assign_clause($param, {wrap => $opt{wrap}});
cleanup
Yuki Kimoto authored on 2011-10-21
999
    
1000
    # Convert id to where parameter
1001
    my $where = defined $opt{id}
moved DBIx::Custom::Guide to...
Yuki Kimoto authored on 2011-10-22
1002
      ? $self->_id_to_param(delete $opt{id}, $opt{primary_key}, $opt{table})
cleanup
Yuki Kimoto authored on 2011-10-21
1003
      : $opt{where};
improved delete() and update...
Yuki Kimoto authored on 2011-01-26
1004

            
1005
    # Where
cleanup
Yuki Kimoto authored on 2011-10-21
1006
    my $w = $self->_where_clause_and_param($where, $opt{where_param});
removed reconnect method
yuki-kimoto authored on 2010-05-28
1007
    
cleanup
Yuki Kimoto authored on 2011-10-21
1008
    # Merge where parameter to parameter
cleanup
Yuki Kimoto authored on 2011-10-21
1009
    $param = $self->merge_param($param, $w->{param}) if keys %{$w->{param}};
DEPRECATED select() param op...
Yuki Kimoto authored on 2011-04-25
1010
    
cleanup
Yuki Kimoto authored on 2011-04-02
1011
    # Update statement
cleanup
Yuki Kimoto authored on 2011-10-21
1012
    my $sql = "update ";
1013
    $sql .= "$opt{prefix} " if defined $opt{prefix};
cleanup
Yuki Kimoto authored on 2011-10-21
1014
    $sql .= $self->_q($opt{table}) . " set $assign_clause $w->{clause} ";
cleanup
Yuki Kimoto authored on 2011-01-27
1015
    
cleanup
yuki-kimoto authored on 2010-10-17
1016
    # Execute query
cleanup
Yuki Kimoto authored on 2011-10-21
1017
    return $self->execute($sql, $param, %opt);
removed reconnect method
yuki-kimoto authored on 2010-05-28
1018
}
1019

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

            
cleanup
Yuki Kimoto authored on 2011-10-21
1022
sub update_or_insert {
1023
    my $self = shift;
1024

            
cleanup
Yuki Kimoto authored on 2011-10-21
1025
    # Options
cleanup
Yuki Kimoto authored on 2011-10-21
1026
    my $param  = shift;
1027
    my %opt = @_;
1028
    my $id = $opt{id};
1029
    my $primary_key = $opt{primary_key};
1030
    $primary_key = [$primary_key] unless ref $primary_key eq 'ARRAY';
1031
    croak "update_or_insert method need primary_key option " .
1032
          "when id is specified" . _subname
1033
      if defined $id && !defined $primary_key;
1034
    my $table  = $opt{table};
1035
    croak qq{"table" option must be specified } . _subname
1036
      unless defined $table;
1037
    my $select_option = $opt{select_option};
1038
    
1039
    my $rows = $self->select(table => $table, id => $id,
1040
        primary_key => $primary_key, %$select_option)->all;
1041
    
1042
    croak "selected row count must be one or zero" . _subname
1043
      if @$rows > 1;
1044
    
1045
    my $row = $rows->[0];
1046
    my @opt = (table => $table);
1047
    push @opt, id => $id, primary_key => $primary_key if defined $id;
1048
    push @opt, %opt;
1049
    
1050
    if ($row) {
1051
        return $self->update($param, @opt);
1052
    }
1053
    else {
1054
        return $self->insert($param, @opt);
1055
    }
1056
}
1057

            
- added EXPERIMENTAL update_...
Yuki Kimoto authored on 2011-09-12
1058
sub update_timestamp {
1059
    my $self = shift;
1060
    
1061
    if (@_) {
1062
        $self->{update_timestamp} = [@_];
1063
        
1064
        return $self;
1065
    }
1066
    return $self->{update_timestamp};
1067
}
1068

            
- method method of DBIx::Cus...
Yuki Kimoto authored on 2011-10-10
1069
sub values_clause {
1070
    my ($self, $param, $opts) = @_;
1071
    
1072
    my $wrap = $opts->{wrap} || {};
1073
    
1074
    # Create insert parameter tag
1075
    my $safety = $self->safety_character;
1076
    my @columns;
1077
    my @placeholders;
cleanup
Yuki Kimoto authored on 2011-10-21
1078
    for my $column (sort keys %$param) {
- method method of DBIx::Cus...
Yuki Kimoto authored on 2011-10-10
1079
        croak qq{"$column" is not safety column name } . _subname
1080
          unless $column =~ /^[$safety\.]+$/;
1081
        my $column_quote = $self->_q($column);
1082
        $column_quote =~ s/\./$self->_q(".")/e;
1083
        push @columns, $column_quote;
1084
        
1085
        my $func = $wrap->{$column} || sub { $_[0] };
1086
        push @placeholders,
1087
          ref $param->{$column} eq 'SCALAR' ? ${$param->{$column}}
1088
        : $func->(":$column");
1089
    }
1090
    
1091
    return '(' . join(', ', @columns) . ') ' . 'values ' .
1092
           '(' . join(', ', @placeholders) . ')'
1093
}
1094

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

            
updated pod
Yuki Kimoto authored on 2011-06-21
1097
sub _create_query {
cleanup
Yuki Kimoto authored on 2011-06-13
1098
    
added EXPERIMENTAL reuse_sth...
Yuki Kimoto authored on 2011-10-22
1099
    my ($self, $source, $after_build_sql, $reuse_sth) = @_;
cleanup
Yuki Kimoto authored on 2011-06-13
1100
    
updated pod
Yuki Kimoto authored on 2011-06-21
1101
    # Cache
1102
    my $cache = $self->cache;
1103
    
1104
    # Query
1105
    my $query;
1106
    
1107
    # Get cached query
1108
    if ($cache) {
cleanup
Yuki Kimoto authored on 2011-06-13
1109
        
updated pod
Yuki Kimoto authored on 2011-06-21
1110
        # Get query
1111
        my $q = $self->cache_method->($self, $source);
cleanup
Yuki Kimoto authored on 2011-06-13
1112
        
updated pod
Yuki Kimoto authored on 2011-06-21
1113
        # Create query
1114
        if ($q) {
1115
            $query = DBIx::Custom::Query->new($q);
DBIx::Custom::Query filters ...
Yuki Kimoto authored on 2011-07-30
1116
            $query->{filters} = $self->filters;
cleanup
Yuki Kimoto authored on 2011-06-13
1117
        }
updated pod
Yuki Kimoto authored on 2011-06-21
1118
    }
1119
    
1120
    # Create query
1121
    unless ($query) {
1122

            
1123
        # Create query
1124
        my $builder = $self->query_builder;
1125
        $query = $builder->build_query($source);
1126

            
1127
        # Remove reserved word quote
1128
        if (my $q = $self->_quote) {
added quote method's two cha...
Yuki Kimoto authored on 2011-07-29
1129
            $q = quotemeta($q);
1130
            $_ =~ s/[$q]//g for @{$query->columns}
cleanup
Yuki Kimoto authored on 2011-06-13
1131
        }
updated pod
Yuki Kimoto authored on 2011-06-21
1132

            
1133
        # Save query to cache
1134
        $self->cache_method->(
1135
            $self, $source,
1136
            {
1137
                sql     => $query->sql, 
1138
                columns => $query->columns,
DBIx::Custom::Query tables a...
Yuki Kimoto authored on 2011-07-30
1139
                tables  => $query->{tables} || []
updated pod
Yuki Kimoto authored on 2011-06-21
1140
            }
1141
        ) if $cache;
cleanup
Yuki Kimoto authored on 2011-06-13
1142
    }
added EXPERIMENTAL execute m...
Yuki Kimoto authored on 2011-08-14
1143

            
1144
    # Filter SQL
sqlfilter option is renamed ...
Yuki Kimoto authored on 2011-09-16
1145
    if ($after_build_sql) {
added EXPERIMENTAL execute m...
Yuki Kimoto authored on 2011-08-14
1146
        my $sql = $query->sql;
sqlfilter option is renamed ...
Yuki Kimoto authored on 2011-09-16
1147
        $sql = $after_build_sql->($sql);
added EXPERIMENTAL execute m...
Yuki Kimoto authored on 2011-08-14
1148
        $query->sql($sql);
1149
    }
1150
        
added EXPERIMENTAL last_sql ...
Yuki Kimoto authored on 2011-07-11
1151
    # Save sql
1152
    $self->last_sql($query->sql);
1153
    
updated pod
Yuki Kimoto authored on 2011-06-21
1154
    # Prepare statement handle
1155
    my $sth;
added EXPERIMENTAL reuse_sth...
Yuki Kimoto authored on 2011-10-22
1156
    $sth = $reuse_sth->{$query->{sql}} if $reuse_sth;
1157
    eval { $sth = $self->dbh->prepare($query->{sql}) } unless $sth;
1158
    $reuse_sth->{$query->{sql}} = $sth if $reuse_sth;
updated pod
Yuki Kimoto authored on 2011-06-21
1159
    
1160
    if ($@) {
1161
        $self->_croak($@, qq{. Following SQL is executed.\n}
1162
                        . qq{$query->{sql}\n} . _subname);
1163
    }
1164
    
1165
    # Set statement handle
1166
    $query->sth($sth);
1167
    
1168
    # Set filters
DBIx::Custom::Query filters ...
Yuki Kimoto authored on 2011-07-30
1169
    $query->{filters} = $self->filters;
updated pod
Yuki Kimoto authored on 2011-06-21
1170
    
1171
    return $query;
cleanup
Yuki Kimoto authored on 2011-06-13
1172
}
1173

            
cleanup
Yuki Kimoto authored on 2011-04-02
1174
sub _create_bind_values {
EXPERIMENTAL type_rule argum...
Yuki Kimoto authored on 2011-06-17
1175
    my ($self, $params, $columns, $filter, $type_filters, $bind_type) = @_;
removed reconnect method
yuki-kimoto authored on 2010-05-28
1176
    
cleanup
Yuki Kimoto authored on 2011-04-02
1177
    # Create bind values
- added EXPERIMENTAL type() ...
Yuki Kimoto authored on 2011-03-21
1178
    my $bind = [];
removed reconnect method
yuki-kimoto authored on 2010-05-28
1179
    my $count = {};
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
1180
    my $not_exists = {};
cleanup
Yuki Kimoto authored on 2011-10-21
1181
    for my $column (@$columns) {
removed reconnect method
yuki-kimoto authored on 2010-05-28
1182
        
1183
        # Value
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
1184
        my $value;
1185
        if(ref $params->{$column} eq 'ARRAY') {
1186
            my $i = $count->{$column} || 0;
1187
            $i += $not_exists->{$column} || 0;
1188
            my $found;
1189
            for (my $k = $i; $i < @{$params->{$column}}; $k++) {
1190
                if (ref $params->{$column}->[$k] eq 'DBIx::Custom::NotExists') {
1191
                    $not_exists->{$column}++;
1192
                }
1193
                else  {
1194
                    $value = $params->{$column}->[$k];
1195
                    $found = 1;
1196
                    last
1197
                }
1198
            }
1199
            next unless $found;
1200
        }
1201
        else { $value = $params->{$column} }
removed reconnect method
yuki-kimoto authored on 2010-05-28
1202
        
cleanup
Yuki Kimoto authored on 2011-01-12
1203
        # Filter
1204
        my $f = $filter->{$column} || $self->{default_out_filter} || '';
separate DBIx::Custom type_r...
Yuki Kimoto authored on 2011-06-15
1205
        $value = $f->($value) if $f;
1206
        
1207
        # Type rule
micro optimization
Yuki Kimoto authored on 2011-10-22
1208
        my $tf1 = $self->{"_into1"}->{dot}->{$column}
1209
          || $type_filters->{1}->{$column};
1210
        $value = $tf1->($value) if $tf1;
1211
        my $tf2 = $self->{"_into2"}->{dot}->{$column}
1212
          || $type_filters->{2}->{$column};
1213
        $value = $tf2->($value) if $tf2;
1214
       
separate DBIx::Custom type_r...
Yuki Kimoto authored on 2011-06-15
1215
        # Bind values
DBIx::Custom::Model type att...
Yuki Kimoto authored on 2011-06-17
1216
        push @$bind, {value => $value, bind_type => $bind_type->{$column}};
removed reconnect method
yuki-kimoto authored on 2010-05-28
1217
        
1218
        # Count up 
1219
        $count->{$column}++;
1220
    }
1221
    
- added EXPERIMENTAL type() ...
Yuki Kimoto authored on 2011-03-21
1222
    return $bind;
removed reconnect method
yuki-kimoto authored on 2010-05-28
1223
}
1224

            
cleanup
Yuki Kimoto authored on 2011-10-21
1225
sub _id_to_param {
fixed id option bug when col...
Yuki Kimoto authored on 2011-10-10
1226
    my ($self, $id, $primary_keys, $table) = @_;
cleanup
Yuki Kimoto authored on 2011-10-21
1227
    
1228
    # Check primary key
cleanup
Yuki Kimoto authored on 2011-10-21
1229
    croak "primary_key option " .
1230
          "must be specified with id option " . _subname
1231
      unless defined $primary_keys;
1232
    $primary_keys = [$primary_keys] unless ref $primary_keys eq 'ARRAY';
improved error messages
Yuki Kimoto authored on 2011-04-18
1233
    
cleanup
Yuki Kimoto authored on 2011-06-08
1234
    # Create parameter
1235
    my $param = {};
fixed small insert, update, ...
Yuki Kimoto authored on 2011-06-21
1236
    if (defined $id) {
cleanup
Yuki Kimoto authored on 2011-06-08
1237
        $id = [$id] unless ref $id;
1238
        croak qq{"id" must be constant value or array reference}
improved error messages
Yuki Kimoto authored on 2011-04-18
1239
            . " (" . (caller 1)[3] . ")"
cleanup
Yuki Kimoto authored on 2011-06-08
1240
          unless !ref $id || ref $id eq 'ARRAY';
1241
        croak qq{"id" must contain values same count as primary key}
improved error messages
Yuki Kimoto authored on 2011-04-18
1242
            . " (" . (caller 1)[3] . ")"
cleanup
Yuki Kimoto authored on 2011-06-08
1243
          unless @$primary_keys eq @$id;
improved error messages
Yuki Kimoto authored on 2011-04-18
1244
        for(my $i = 0; $i < @$primary_keys; $i ++) {
fixed id option bug when col...
Yuki Kimoto authored on 2011-10-10
1245
           my $key = $primary_keys->[$i];
1246
           $key = "$table." . $key if $table;
1247
           $param->{$key} = $id->[$i];
improved error messages
Yuki Kimoto authored on 2011-04-18
1248
        }
1249
    }
1250
    
cleanup
Yuki Kimoto authored on 2011-06-08
1251
    return $param;
improved error messages
Yuki Kimoto authored on 2011-04-18
1252
}
1253

            
EXPERIMETAL fork safety impl...
Yuki Kimoto authored on 2011-03-12
1254
sub _connect {
1255
    my $self = shift;
1256
    
1257
    # Attributes
added warnings
Yuki Kimoto authored on 2011-06-07
1258
    my $dsn = $self->data_source;
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
1259
    warn "data_source is DEPRECATED!\n"
fixed bug that data_source D...
Yuki Kimoto authored on 2011-06-13
1260
      if $dsn;
added warnings
Yuki Kimoto authored on 2011-06-07
1261
    $dsn ||= $self->dsn;
data_source is DEPRECATED! I...
Yuki Kimoto authored on 2011-06-06
1262
    croak qq{"dsn" must be specified } . _subname
1263
      unless $dsn;
EXPERIMETAL fork safety impl...
Yuki Kimoto authored on 2011-03-12
1264
    my $user        = $self->user;
1265
    my $password    = $self->password;
- dbi_option attribute is re...
Yuki Kimoto authored on 2011-10-05
1266
    my $option = $self->_option;
1267
    $option = {%{$self->default_option}, %$option};
cleanup
Yuki Kimoto authored on 2011-08-16
1268
    
EXPERIMETAL fork safety impl...
Yuki Kimoto authored on 2011-03-12
1269
    # Connect
cleanup
Yuki Kimoto authored on 2011-08-16
1270
    my $dbh;
1271
    eval {
1272
        $dbh = DBI->connect(
1273
            $dsn,
1274
            $user,
1275
            $password,
- dbi_option attribute is re...
Yuki Kimoto authored on 2011-10-05
1276
            $option
cleanup
Yuki Kimoto authored on 2011-08-16
1277
        );
1278
    };
EXPERIMETAL fork safety impl...
Yuki Kimoto authored on 2011-03-12
1279
    
1280
    # Connect error
cleanup
Yuki Kimoto authored on 2011-04-25
1281
    croak "$@ " . _subname if $@;
EXPERIMETAL fork safety impl...
Yuki Kimoto authored on 2011-03-12
1282
    
1283
    return $dbh;
1284
}
1285

            
cleanup
yuki-kimoto authored on 2010-10-17
1286
sub _croak {
1287
    my ($self, $error, $append) = @_;
cleanup
Yuki Kimoto authored on 2011-04-02
1288
    
1289
    # Append
cleanup
yuki-kimoto authored on 2010-10-17
1290
    $append ||= "";
1291
    
1292
    # Verbose
1293
    if ($Carp::Verbose) { croak $error }
1294
    
1295
    # Not verbose
1296
    else {
1297
        
1298
        # Remove line and module infromation
1299
        my $at_pos = rindex($error, ' at ');
1300
        $error = substr($error, 0, $at_pos);
1301
        $error =~ s/\s+$//;
1302
        croak "$error$append";
1303
    }
1304
}
1305

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

            
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
1308
sub _need_tables {
1309
    my ($self, $tree, $need_tables, $tables) = @_;
1310
    
cleanup
Yuki Kimoto authored on 2011-04-02
1311
    # Get needed tables
cleanup
Yuki Kimoto authored on 2011-10-21
1312
    for my $table (@$tables) {
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
1313
        if ($tree->{$table}) {
1314
            $need_tables->{$table} = 1;
1315
            $self->_need_tables($tree, $need_tables, [$tree->{$table}{parent}])
1316
        }
1317
    }
1318
}
1319

            
- dbi_option attribute is re...
Yuki Kimoto authored on 2011-10-05
1320
sub _option {
1321
    my $self = shift;
1322
    my $option = {%{$self->dbi_options}, %{$self->dbi_option}, %{$self->option}};
1323
    warn "dbi_options is DEPRECATED! use option instead\n"
1324
      if keys %{$self->dbi_options};
1325
    warn "dbi_option is DEPRECATED! use option instead\n"
1326
      if keys %{$self->dbi_option};
1327
    return $option;
1328
}
1329

            
fixed some select() join opi...
Yuki Kimoto authored on 2011-03-09
1330
sub _push_join {
1331
    my ($self, $sql, $join, $join_tables) = @_;
1332
    
cleanup
Yuki Kimoto authored on 2011-10-21
1333
    $join = [$join] unless ref $join eq 'ARRAY';
cleanup
Yuki Kimoto authored on 2011-10-21
1334
    
cleanup
Yuki Kimoto authored on 2011-04-02
1335
    # No join
fixed some select() join opi...
Yuki Kimoto authored on 2011-03-09
1336
    return unless @$join;
1337
    
cleanup
Yuki Kimoto authored on 2011-04-02
1338
    # Push join clause
fixed some select() join opi...
Yuki Kimoto authored on 2011-03-09
1339
    my $tree = {};
1340
    for (my $i = 0; $i < @$join; $i++) {
1341
        
cleanup
Yuki Kimoto authored on 2011-07-28
1342
        # Arrange
added join new syntax
Yuki Kimoto authored on 2011-07-28
1343
        my $join_clause;;
1344
        my $option;
1345
        if (ref $join->[$i] eq 'HASH') {
1346
            $join_clause = $join->[$i]->{clause};
1347
            $option = {table => $join->[$i]->{table}};
1348
        }
1349
        else {
1350
            $join_clause = $join->[$i];
1351
            $option = {};
1352
        };
cleanup
Yuki Kimoto authored on 2011-07-28
1353

            
1354
        # Find tables in join clause
added join new syntax
Yuki Kimoto authored on 2011-07-28
1355
        my $table1;
1356
        my $table2;
1357
        if (my $table = $option->{table}) {
1358
            $table1 = $table->[0];
1359
            $table2 = $table->[1];
fixed some select() join opi...
Yuki Kimoto authored on 2011-03-09
1360
        }
cleanup
Yuki Kimoto authored on 2011-07-28
1361
        else {
1362
            my $q = $self->_quote;
1363
            my $j_clause = (split /\s+on\s+/, $join_clause)[-1];
1364
            $j_clause =~ s/'.+?'//g;
1365
            my $q_re = quotemeta($q);
added quote method's two cha...
Yuki Kimoto authored on 2011-07-29
1366
            $j_clause =~ s/[$q_re]//g;
improved join clause parsing
Yuki Kimoto authored on 2011-09-27
1367
            
1368
            my @j_clauses = reverse split /\s(and|on)\s/, $j_clause;
cleanup
Yuki Kimoto authored on 2011-07-28
1369
            my $c = $self->safety_character;
- update_param is DEPRECATED...
Yuki Kimoto authored on 2011-10-04
1370
            my $join_re = qr/($c+)\.$c+[^$c].*?($c+)\.$c+/sm;
improved join clause parsing
Yuki Kimoto authored on 2011-09-27
1371
            for my $clause (@j_clauses) {
1372
                if ($clause =~ $join_re) {
1373
                    $table1 = $1;
1374
                    $table2 = $2;
1375
                    last;
1376
                }                
cleanup
Yuki Kimoto authored on 2011-07-28
1377
            }
fixed some select() join opi...
Yuki Kimoto authored on 2011-03-09
1378
        }
added join new syntax
Yuki Kimoto authored on 2011-07-28
1379
        croak qq{join clause must have two table name after "on" keyword. } .
1380
              qq{"$join_clause" is passed }  . _subname
1381
          unless defined $table1 && defined $table2;
1382
        croak qq{right side table of "$join_clause" must be unique }
1383
            . _subname
1384
          if exists $tree->{$table2};
1385
        croak qq{Same table "$table1" is specified} . _subname
1386
          if $table1 eq $table2;
1387
        $tree->{$table2}
1388
          = {position => $i, parent => $table1, join => $join_clause};
fixed some select() join opi...
Yuki Kimoto authored on 2011-03-09
1389
    }
1390
    
cleanup
Yuki Kimoto authored on 2011-04-02
1391
    # Search need tables
fixed some select() join opi...
Yuki Kimoto authored on 2011-03-09
1392
    my $need_tables = {};
1393
    $self->_need_tables($tree, $need_tables, $join_tables);
cleanup
Yuki Kimoto authored on 2011-10-21
1394
    my @need_tables = sort { $tree->{$a}{position} <=> $tree->{$b}{position} }
1395
      keys %$need_tables;
cleanup
Yuki Kimoto authored on 2011-04-02
1396
    
1397
    # Add join clause
cleanup
Yuki Kimoto authored on 2011-10-21
1398
    $$sql .= $tree->{$_}{join} . ' ' for @need_tables;
fixed some select() join opi...
Yuki Kimoto authored on 2011-03-09
1399
}
cleanup
Yuki Kimoto authored on 2011-03-08
1400

            
reserved_word_quote is DEPRE...
Yuki Kimoto authored on 2011-06-17
1401
sub _quote {
1402
    my $self = shift;
micro optimization
Yuki Kimoto authored on 2011-10-22
1403
    return $self->{reserved_word_quote} || $self->quote || '';
reserved_word_quote is DEPRE...
Yuki Kimoto authored on 2011-06-17
1404
}
1405

            
cleanup
Yuki Kimoto authored on 2011-07-29
1406
sub _q {
fixex [] reserved_word_quote...
Yuki Kimoto authored on 2011-08-14
1407
    my ($self, $value, $quotemeta) = @_;
cleanup
Yuki Kimoto authored on 2011-07-29
1408
    
1409
    my $quote = $self->_quote;
1410
    my $q = substr($quote, 0, 1) || '';
added quote method's two cha...
Yuki Kimoto authored on 2011-07-29
1411
    my $p;
1412
    if (defined $quote && length $quote > 1) {
1413
        $p = substr($quote, 1, 1);
1414
    }
1415
    else { $p = $q }
cleanup
Yuki Kimoto authored on 2011-07-29
1416
    
fixex [] reserved_word_quote...
Yuki Kimoto authored on 2011-08-14
1417
    if ($quotemeta) {
1418
        $q = quotemeta($q);
1419
        $p = quotemeta($p);
1420
    }
1421
    
added quote method's two cha...
Yuki Kimoto authored on 2011-07-29
1422
    return "$q$value$p";
cleanup
Yuki Kimoto authored on 2011-07-29
1423
}
1424

            
cleanup
Yuki Kimoto authored on 2011-04-02
1425
sub _remove_duplicate_table {
1426
    my ($self, $tables, $main_table) = @_;
1427
    
1428
    # Remove duplicate table
1429
    my %tables = map {defined $_ ? ($_ => 1) : ()} @$tables;
1430
    delete $tables{$main_table} if $main_table;
1431
    
micro optimization
Yuki Kimoto authored on 2011-07-30
1432
    my $new_tables = [keys %tables, $main_table ? $main_table : ()];
1433
    if (my $q = $self->_quote) {
1434
        $q = quotemeta($q);
1435
        $_ =~ s/[$q]//g for @$new_tables;
1436
    }
1437

            
1438
    return $new_tables;
cleanup
Yuki Kimoto authored on 2011-04-02
1439
}
1440

            
cleanup
Yuki Kimoto authored on 2011-04-02
1441
sub _search_tables {
cleanup
Yuki Kimoto authored on 2011-04-02
1442
    my ($self, $source) = @_;
1443
    
cleanup
Yuki Kimoto authored on 2011-04-02
1444
    # Search tables
cleanup
Yuki Kimoto authored on 2011-04-02
1445
    my $tables = [];
1446
    my $safety_character = $self->safety_character;
reserved_word_quote is DEPRE...
Yuki Kimoto authored on 2011-06-17
1447
    my $q = $self->_quote;
fixex [] reserved_word_quote...
Yuki Kimoto authored on 2011-08-14
1448
    my $quoted_safety_character_re = $self->_q("?([$safety_character]+)", 1);
1449
    my $table_re = $q ? qr/(?:^|[^$safety_character])${quoted_safety_character_re}?\./
improved table search in col...
Yuki Kimoto authored on 2011-04-12
1450
                      : qr/(?:^|[^$safety_character])([$safety_character]+)\./;
cleanup
Yuki Kimoto authored on 2011-04-02
1451
    while ($source =~ /$table_re/g) {
1452
        push @$tables, $1;
1453
    }
1454
    
1455
    return $tables;
1456
}
1457

            
cleanup
Yuki Kimoto authored on 2011-04-02
1458
sub _where_to_obj {
where can recieve array refr...
Yuki Kimoto authored on 2011-03-24
1459
    my ($self, $where) = @_;
1460
    
cleanup
Yuki Kimoto authored on 2011-04-02
1461
    my $obj;
1462
    
1463
    # Hash
where can recieve array refr...
Yuki Kimoto authored on 2011-03-24
1464
    if (ref $where eq 'HASH') {
1465
        my $clause = ['and'];
reserved_word_quote is DEPRE...
Yuki Kimoto authored on 2011-06-17
1466
        my $q = $self->_quote;
cleanup
Yuki Kimoto authored on 2011-10-21
1467
        for my $column (keys %$where) {
fixex [] reserved_word_quote...
Yuki Kimoto authored on 2011-08-14
1468
            my $table;
1469
            my $c;
1470
            if ($column =~ /(?:(.*?)\.)?(.*)/) {
1471
                $table = $1;
1472
                $c = $2;
1473
            }
1474
            
1475
            my $table_quote;
1476
            $table_quote = $self->_q($table) if defined $table;
1477
            my $column_quote = $self->_q($c);
1478
            $column_quote = $table_quote . '.' . $column_quote
1479
              if defined $table_quote;
- update_param_tag is DEPREC...
Yuki Kimoto authored on 2011-06-07
1480
            push @$clause, "$column_quote = :$column" for keys %$where;
added EXPERIMENTAL reserved_...
Yuki Kimoto authored on 2011-03-30
1481
        }
cleanup
Yuki Kimoto authored on 2011-04-02
1482
        $obj = $self->where(clause => $clause, param => $where);
where can recieve array refr...
Yuki Kimoto authored on 2011-03-24
1483
    }
cleanup
Yuki Kimoto authored on 2011-04-02
1484
    
1485
    # DBIx::Custom::Where object
where can recieve array refr...
Yuki Kimoto authored on 2011-03-24
1486
    elsif (ref $where eq 'DBIx::Custom::Where') {
cleanup
Yuki Kimoto authored on 2011-04-02
1487
        $obj = $where;
where can recieve array refr...
Yuki Kimoto authored on 2011-03-24
1488
    }
cleanup
Yuki Kimoto authored on 2011-04-02
1489
    
updated pod
Yuki Kimoto authored on 2011-06-21
1490
    # Array
where can recieve array refr...
Yuki Kimoto authored on 2011-03-24
1491
    elsif (ref $where eq 'ARRAY') {
cleanup
Yuki Kimoto authored on 2011-04-02
1492
        $obj = $self->where(
where can recieve array refr...
Yuki Kimoto authored on 2011-03-24
1493
            clause => $where->[0],
1494
            param  => $where->[1]
1495
        );
1496
    }
1497
    
cleanup
Yuki Kimoto authored on 2011-04-02
1498
    # Check where argument
improved error messages
Yuki Kimoto authored on 2011-04-18
1499
    croak qq{"where" must be hash reference or DBIx::Custom::Where object}
DBIx::Custom::Model type att...
Yuki Kimoto authored on 2011-06-17
1500
        . qq{or array reference, which contains where clause and parameter}
cleanup
Yuki Kimoto authored on 2011-04-25
1501
        . _subname
cleanup
Yuki Kimoto authored on 2011-04-02
1502
      unless ref $obj eq 'DBIx::Custom::Where';
where can recieve array refr...
Yuki Kimoto authored on 2011-03-24
1503
    
cleanup
Yuki Kimoto authored on 2011-04-02
1504
    return $obj;
where can recieve array refr...
Yuki Kimoto authored on 2011-03-24
1505
}
1506

            
cleanup
Yuki Kimoto authored on 2011-10-21
1507
sub _where_clause_and_param {
1508
    my ($self, $where, $param) = @_;
1509
 
1510
    $where ||= {};
1511
    $param ||= {};
1512
    my $w = {};
1513
    my $where_clause = '';
1514
    if (ref $where eq 'ARRAY' && !ref $where->[0]) {
1515
        $w->{clause} = "where " . $where->[0];
1516
        $w->{param} = $where->[1];
1517
    }
1518
    elsif (ref $where) {
1519
        $where = $self->_where_to_obj($where);
1520
        $w->{param} = keys %$param
1521
                    ? $self->merge_param($param, $where->param)
1522
                    : $where->param;
1523
        $w->{clause} = $where->to_string;
1524
    }
1525
    elsif ($where) {
1526
        $w->{clause} = "where $where";
1527
        $w->{param} = $param;
1528
    }
1529
    
1530
    return $w;
1531
}
1532

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

            
1536
    # Initialize filters
1537
    $self->{filter} ||= {};
micro optimization
Yuki Kimoto authored on 2011-07-30
1538
    $self->{filter}{on} = 1;
updated pod
Yuki Kimoto authored on 2011-06-21
1539
    $self->{filter}{out} ||= {};
1540
    $self->{filter}{in} ||= {};
1541
    $self->{filter}{end} ||= {};
1542
    
1543
    # Usage
1544
    my $usage = "Usage: \$dbi->apply_filter(" .
1545
                "TABLE, COLUMN1, {in => INFILTER1, out => OUTFILTER1, end => ENDFILTER1}, " .
1546
                "COLUMN2, {in => INFILTER2, out => OUTFILTER2, end => ENDFILTER2}, ...)";
1547
    
1548
    # Apply filter
1549
    for (my $i = 0; $i < @cinfos; $i += 2) {
1550
        
1551
        # Column
1552
        my $column = $cinfos[$i];
1553
        if (ref $column eq 'ARRAY') {
cleanup
Yuki Kimoto authored on 2011-10-21
1554
            for my $c (@$column) {
updated pod
Yuki Kimoto authored on 2011-06-21
1555
                push @cinfos, $c, $cinfos[$i + 1];
1556
            }
1557
            next;
1558
        }
1559
        
1560
        # Filter infomation
1561
        my $finfo = $cinfos[$i + 1] || {};
1562
        croak "$usage (table: $table) " . _subname
1563
          unless  ref $finfo eq 'HASH';
cleanup
Yuki Kimoto authored on 2011-10-21
1564
        for my $ftype (keys %$finfo) {
updated pod
Yuki Kimoto authored on 2011-06-21
1565
            croak "$usage (table: $table) " . _subname
1566
              unless $ftype eq 'in' || $ftype eq 'out' || $ftype eq 'end'; 
1567
        }
1568
        
1569
        # Set filters
cleanup
Yuki Kimoto authored on 2011-10-21
1570
        for my $way (qw/in out end/) {
updated pod
Yuki Kimoto authored on 2011-06-21
1571
        
1572
            # Filter
1573
            my $filter = $finfo->{$way};
1574
            
1575
            # Filter state
1576
            my $state = !exists $finfo->{$way} ? 'not_exists'
1577
                      : !defined $filter        ? 'not_defined'
1578
                      : ref $filter eq 'CODE'   ? 'code'
1579
                      : 'name';
1580
            
1581
            # Filter is not exists
1582
            next if $state eq 'not_exists';
1583
            
1584
            # Check filter name
1585
            croak qq{Filter "$filter" is not registered } . _subname
1586
              if  $state eq 'name'
1587
               && ! exists $self->filters->{$filter};
1588
            
1589
            # Set filter
1590
            my $f = $state eq 'not_defined' ? undef
1591
                  : $state eq 'code'        ? $filter
1592
                  : $self->filters->{$filter};
1593
            $self->{filter}{$way}{$table}{$column} = $f;
1594
            $self->{filter}{$way}{$table}{"$table.$column"} = $f;
1595
            $self->{filter}{$way}{$table}{"${table}__$column"} = $f;
1596
            $self->{filter}{$way}{$table}{"${table}-$column"} = $f;
1597
        }
1598
    }
1599
    
1600
    return $self;
1601
}
1602

            
- update_param is DEPRECATED...
Yuki Kimoto authored on 2011-10-04
1603
# DEPRECATED!
1604
has 'data_source';
1605
has dbi_options => sub { {} };
1606
has filter_check  => 1;
1607
has 'reserved_word_quote';
- dbi_option attribute is re...
Yuki Kimoto authored on 2011-10-05
1608
has dbi_option => sub { {} };
1609
has default_dbi_option => sub {
1610
    warn "default_dbi_option is DEPRECATED! use default_option instead";
1611
    return shift->default_option;
1612
};
1613

            
- method method of DBIx::Cus...
Yuki Kimoto authored on 2011-10-10
1614
# DEPRECATED!
1615
sub method {
1616
    warn "method is DEPRECATED! use helper instead";
1617
    return shift->helper(@_);
1618
}
- update_param is DEPRECATED...
Yuki Kimoto authored on 2011-10-04
1619

            
1620
# DEPRECATED!
1621
sub assign_param {
1622
    my $self = shift;
1623
    warn "assing_param is DEPRECATED! use assign_clause instead";
1624
    return $self->assign_clause(@_);
1625
}
1626

            
1627
# DEPRECATED
1628
sub update_param {
1629
    my ($self, $param, $opts) = @_;
1630
    
1631
    warn "update_param is DEPRECATED! use assing_clause instead.";
1632
    
1633
    # Create update parameter tag
1634
    my $tag = $self->assign_clause($param, $opts);
1635
    $tag = "set $tag" unless $opts->{no_set};
1636

            
1637
    return $tag;
1638
}
1639

            
updated pod
Yuki Kimoto authored on 2011-06-21
1640
# DEPRECATED!
1641
sub create_query {
1642
    warn "create_query is DEPRECATED! use query option of each method";
1643
    shift->_create_query(@_);
1644
}
1645

            
cleanup
Yuki Kimoto authored on 2011-06-13
1646
# DEPRECATED!
1647
sub apply_filter {
1648
    my $self = shift;
1649
    
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
1650
    warn "apply_filter is DEPRECATED!";
cleanup
Yuki Kimoto authored on 2011-06-13
1651
    return $self->_apply_filter(@_);
1652
}
1653

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

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

            
cleanup
Yuki Kimoto authored on 2011-10-21
1660
    # Options
cleanup
Yuki Kimoto authored on 2011-10-21
1661
    my $primary_keys = delete $opt{primary_key};
select_at is DEPRECATED! use...
Yuki Kimoto authored on 2011-06-08
1662
    $primary_keys = [$primary_keys] unless ref $primary_keys;
cleanup
Yuki Kimoto authored on 2011-10-21
1663
    my $where = delete $opt{where};
1664
    my $param = delete $opt{param};
select_at is DEPRECATED! use...
Yuki Kimoto authored on 2011-06-08
1665
    
1666
    # Table
1667
    croak qq{"table" option must be specified } . _subname
cleanup
Yuki Kimoto authored on 2011-10-21
1668
      unless $opt{table};
1669
    my $table = ref $opt{table} ? $opt{table}->[-1] : $opt{table};
select_at is DEPRECATED! use...
Yuki Kimoto authored on 2011-06-08
1670
    
1671
    # Create where parameter
cleanup
Yuki Kimoto authored on 2011-10-21
1672
    my $where_param = $self->_id_to_param($where, $primary_keys);
select_at is DEPRECATED! use...
Yuki Kimoto authored on 2011-06-08
1673
    
cleanup
Yuki Kimoto authored on 2011-10-21
1674
    return $self->select(where => $where_param, %opt);
select_at is DEPRECATED! use...
Yuki Kimoto authored on 2011-06-08
1675
}
1676

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

            
cleanup
Yuki Kimoto authored on 2011-10-21
1681
    warn "delete_at is DEPRECATED! use delete method id option instead";
delete_at is DEPRECATED! use...
Yuki Kimoto authored on 2011-06-08
1682
    
cleanup
Yuki Kimoto authored on 2011-10-21
1683
    # Options
cleanup
Yuki Kimoto authored on 2011-10-21
1684
    my $primary_keys = delete $opt{primary_key};
delete_at is DEPRECATED! use...
Yuki Kimoto authored on 2011-06-08
1685
    $primary_keys = [$primary_keys] unless ref $primary_keys;
cleanup
Yuki Kimoto authored on 2011-10-21
1686
    my $where = delete $opt{where};
delete_at is DEPRECATED! use...
Yuki Kimoto authored on 2011-06-08
1687
    
1688
    # Create where parameter
cleanup
Yuki Kimoto authored on 2011-10-21
1689
    my $where_param = $self->_id_to_param($where, $primary_keys);
delete_at is DEPRECATED! use...
Yuki Kimoto authored on 2011-06-08
1690
    
cleanup
Yuki Kimoto authored on 2011-10-21
1691
    return $self->delete(where => $where_param, %opt);
delete_at is DEPRECATED! use...
Yuki Kimoto authored on 2011-06-08
1692
}
1693

            
cleanup
Yuki Kimoto authored on 2011-06-08
1694
# DEPRECATED!
1695
sub update_at {
1696
    my $self = shift;
1697

            
cleanup
Yuki Kimoto authored on 2011-10-21
1698
    warn "update_at is DEPRECATED! use update method id option instead";
cleanup
Yuki Kimoto authored on 2011-06-08
1699
    
cleanup
Yuki Kimoto authored on 2011-10-21
1700
    # Options
cleanup
Yuki Kimoto authored on 2011-06-08
1701
    my $param;
1702
    $param = shift if @_ % 2;
cleanup
Yuki Kimoto authored on 2011-10-21
1703
    my %opt = @_;
1704
    my $primary_keys = delete $opt{primary_key};
cleanup
Yuki Kimoto authored on 2011-06-08
1705
    $primary_keys = [$primary_keys] unless ref $primary_keys;
cleanup
Yuki Kimoto authored on 2011-10-21
1706
    my $where = delete $opt{where};
1707
    my $p = delete $opt{param} || {};
cleanup
Yuki Kimoto authored on 2011-06-08
1708
    $param  ||= $p;
1709
    
1710
    # Create where parameter
cleanup
Yuki Kimoto authored on 2011-10-21
1711
    my $where_param = $self->_id_to_param($where, $primary_keys);
cleanup
Yuki Kimoto authored on 2011-06-08
1712
    
cleanup
Yuki Kimoto authored on 2011-10-21
1713
    return $self->update(where => $where_param, param => $param, %opt);
cleanup
Yuki Kimoto authored on 2011-06-08
1714
}
1715

            
insert_at is DEPRECATED! add...
Yuki Kimoto authored on 2011-06-08
1716
# DEPRECATED!
1717
sub insert_at {
1718
    my $self = shift;
1719
    
cleanup
Yuki Kimoto authored on 2011-10-21
1720
    warn "insert_at is DEPRECATED! use insert method id option instead";
insert_at is DEPRECATED! add...
Yuki Kimoto authored on 2011-06-08
1721
    
cleanup
Yuki Kimoto authored on 2011-10-21
1722
    # Options
insert_at is DEPRECATED! add...
Yuki Kimoto authored on 2011-06-08
1723
    my $param;
1724
    $param = shift if @_ % 2;
cleanup
Yuki Kimoto authored on 2011-10-21
1725
    my %opt = @_;
1726
    my $primary_key = delete $opt{primary_key};
insert_at is DEPRECATED! add...
Yuki Kimoto authored on 2011-06-08
1727
    $primary_key = [$primary_key] unless ref $primary_key;
cleanup
Yuki Kimoto authored on 2011-10-21
1728
    my $where = delete $opt{where};
1729
    my $p = delete $opt{param} || {};
insert_at is DEPRECATED! add...
Yuki Kimoto authored on 2011-06-08
1730
    $param  ||= $p;
1731
    
1732
    # Create where parameter
cleanup
Yuki Kimoto authored on 2011-10-21
1733
    my $where_param = $self->_id_to_param($where, $primary_key);
insert_at is DEPRECATED! add...
Yuki Kimoto authored on 2011-06-08
1734
    $param = $self->merge_param($where_param, $param);
1735
    
cleanup
Yuki Kimoto authored on 2011-10-21
1736
    return $self->insert(param => $param, %opt);
insert_at is DEPRECATED! add...
Yuki Kimoto authored on 2011-06-08
1737
}
1738

            
added warnings
Yuki Kimoto authored on 2011-06-07
1739
# DEPRECATED!
1740
sub register_tag {
test cleanup
Yuki Kimoto authored on 2011-08-10
1741
    my $self = shift;
1742
    
added warnings
Yuki Kimoto authored on 2011-06-07
1743
    warn "register_tag is DEPRECATED!";
test cleanup
Yuki Kimoto authored on 2011-08-10
1744
    
1745
    # Merge tag
1746
    my $tags = ref $_[0] eq 'HASH' ? $_[0] : {@_};
1747
    $self->{_tags} = {%{$self->{_tags} || {}}, %$tags};
1748
    
1749
    return $self;
1750
}
1751

            
1752
# DEPRECATED!
1753
sub register_tag_processor {
1754
    my $self = shift;
1755
    warn "register_tag_processor is DEPRECATED!";
1756
    # Merge tag
1757
    my $tag_processors = ref $_[0] eq 'HASH' ? $_[0] : {@_};
1758
    $self->{_tags} = {%{$self->{_tags} || {}}, %{$tag_processors}};
1759
    return $self;
added warnings
Yuki Kimoto authored on 2011-06-07
1760
}
1761

            
cleanup
Yuki Kimoto authored on 2011-01-25
1762
# DEPRECATED!
cleanup
Yuki Kimoto authored on 2011-01-12
1763
sub default_bind_filter {
1764
    my $self = shift;
1765
    
cleanup
Yuki Kimoto authored on 2011-06-13
1766
    warn "default_bind_filter is DEPRECATED!";
added warnings
Yuki Kimoto authored on 2011-06-07
1767
    
cleanup
Yuki Kimoto authored on 2011-01-12
1768
    if (@_) {
1769
        my $fname = $_[0];
1770
        
1771
        if (@_ && !$fname) {
1772
            $self->{default_out_filter} = undef;
1773
        }
1774
        else {
many changed
Yuki Kimoto authored on 2011-01-23
1775
            croak qq{Filter "$fname" is not registered}
cleanup
Yuki Kimoto authored on 2011-01-12
1776
              unless exists $self->filters->{$fname};
1777
        
1778
            $self->{default_out_filter} = $self->filters->{$fname};
1779
        }
1780
        return $self;
1781
    }
1782
    
1783
    return $self->{default_out_filter};
1784
}
1785

            
cleanup
Yuki Kimoto authored on 2011-01-25
1786
# DEPRECATED!
cleanup
Yuki Kimoto authored on 2011-01-12
1787
sub default_fetch_filter {
1788
    my $self = shift;
added warnings
Yuki Kimoto authored on 2011-06-07
1789

            
cleanup
Yuki Kimoto authored on 2011-06-13
1790
    warn "default_fetch_filter is DEPRECATED!";
cleanup
Yuki Kimoto authored on 2011-01-12
1791
    
1792
    if (@_) {
many changed
Yuki Kimoto authored on 2011-01-23
1793
        my $fname = $_[0];
1794

            
cleanup
Yuki Kimoto authored on 2011-01-12
1795
        if (@_ && !$fname) {
1796
            $self->{default_in_filter} = undef;
1797
        }
1798
        else {
many changed
Yuki Kimoto authored on 2011-01-23
1799
            croak qq{Filter "$fname" is not registered}
cleanup
Yuki Kimoto authored on 2011-01-12
1800
              unless exists $self->filters->{$fname};
1801
        
1802
            $self->{default_in_filter} = $self->filters->{$fname};
1803
        }
1804
        
1805
        return $self;
1806
    }
1807
    
many changed
Yuki Kimoto authored on 2011-01-23
1808
    return $self->{default_in_filter};
cleanup
Yuki Kimoto authored on 2011-01-12
1809
}
1810

            
- update_param is DEPRECATED...
Yuki Kimoto authored on 2011-10-04
1811
# DEPRECATED!
1812
sub insert_param {
1813
    my $self = shift;
1814
    warn "insert_param is DEPRECATED! use values_clause instead";
1815
    return $self->values_clause(@_);
1816
}
1817

            
- renamed update_param to up...
Yuki Kimoto authored on 2011-03-30
1818
# DEPRECATED!
- update_param_tag is DEPREC...
Yuki Kimoto authored on 2011-06-07
1819
sub insert_param_tag {
1820
    warn "insert_param_tag is DEPRECATED! " .
1821
         "use insert_param instead!";
1822
    return shift->insert_param(@_);
- renamed update_param to up...
Yuki Kimoto authored on 2011-03-30
1823
}
1824

            
1825
# DEPRECATED!
- update_param_tag is DEPREC...
Yuki Kimoto authored on 2011-06-07
1826
sub update_param_tag {
fixed DEPRECATED message bug
Yuki Kimoto authored on 2011-06-10
1827
    warn "update_param_tag is DEPRECATED! " .
- update_param_tag is DEPREC...
Yuki Kimoto authored on 2011-06-07
1828
         "use update_param instead";
1829
    return shift->update_param(@_);
- renamed update_param to up...
Yuki Kimoto authored on 2011-03-30
1830
}
cleanup
Yuki Kimoto authored on 2011-03-08
1831
# DEPRECATED!
1832
sub _push_relation {
1833
    my ($self, $sql, $tables, $relation, $need_where) = @_;
1834
    
1835
    if (keys %{$relation || {}}) {
micro optimization
Yuki Kimoto authored on 2011-09-30
1836
        $$sql .= $need_where ? 'where ' : 'and ';
cleanup
Yuki Kimoto authored on 2011-10-21
1837
        for my $rcolumn (keys %$relation) {
cleanup
Yuki Kimoto authored on 2011-03-08
1838
            my $table1 = (split (/\./, $rcolumn))[0];
1839
            my $table2 = (split (/\./, $relation->{$rcolumn}))[0];
1840
            push @$tables, ($table1, $table2);
micro optimization
Yuki Kimoto authored on 2011-09-30
1841
            $$sql .= "$rcolumn = " . $relation->{$rcolumn} .  'and ';
cleanup
Yuki Kimoto authored on 2011-03-08
1842
        }
1843
    }
micro optimization
Yuki Kimoto authored on 2011-09-30
1844
    $$sql =~ s/and $/ /;
cleanup
Yuki Kimoto authored on 2011-03-08
1845
}
1846

            
1847
# DEPRECATED!
1848
sub _add_relation_table {
cleanup
Yuki Kimoto authored on 2011-03-09
1849
    my ($self, $tables, $relation) = @_;
cleanup
Yuki Kimoto authored on 2011-03-08
1850
    
1851
    if (keys %{$relation || {}}) {
cleanup
Yuki Kimoto authored on 2011-10-21
1852
        for my $rcolumn (keys %$relation) {
cleanup
Yuki Kimoto authored on 2011-03-08
1853
            my $table1 = (split (/\./, $rcolumn))[0];
1854
            my $table2 = (split (/\./, $relation->{$rcolumn}))[0];
1855
            my $table1_exists;
1856
            my $table2_exists;
cleanup
Yuki Kimoto authored on 2011-10-21
1857
            for my $table (@$tables) {
cleanup
Yuki Kimoto authored on 2011-03-08
1858
                $table1_exists = 1 if $table eq $table1;
1859
                $table2_exists = 1 if $table eq $table2;
1860
            }
1861
            unshift @$tables, $table1 unless $table1_exists;
1862
            unshift @$tables, $table2 unless $table2_exists;
1863
        }
1864
    }
1865
}
1866

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

            
removed reconnect method
yuki-kimoto authored on 2010-05-28
1869
=head1 NAME
1870

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

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

            
renamed build_query to creat...
yuki-kimoto authored on 2010-08-06
1875
    use DBIx::Custom;
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
1876
    
1877
    # Connect
1878
    my $dbi = DBIx::Custom->connect(
data_source is DEPRECATED! I...
Yuki Kimoto authored on 2011-06-06
1879
        dsn => "dbi:mysql:database=dbname",
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
1880
        user => 'ken',
1881
        password => '!LFKD%$&',
- dbi_option attribute is re...
Yuki Kimoto authored on 2011-10-05
1882
        option => {mysql_enable_utf8 => 1}
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
1883
    );
cleanup
yuki-kimoto authored on 2010-08-05
1884

            
removed reconnect method
yuki-kimoto authored on 2010-05-28
1885
    # Insert 
updated pod
Yuki Kimoto authored on 2011-06-21
1886
    $dbi->insert({title => 'Perl', author => 'Ken'}, table  => 'book');
removed reconnect method
yuki-kimoto authored on 2010-05-28
1887
    
1888
    # Update 
updated pod
Yuki Kimoto authored on 2011-06-21
1889
    $dbi->update({title => 'Perl', author => 'Ken'}, table  => 'book',
1890
      where  => {id => 5});
removed reconnect method
yuki-kimoto authored on 2010-05-28
1891
    
1892
    # Delete
updated pod
Yuki Kimoto authored on 2011-06-21
1893
    $dbi->delete(table  => 'book', where => {author => 'Ken'});
cleanup
yuki-kimoto authored on 2010-08-05
1894

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

            
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
1899
    # Select, more complex
1900
    my $result = $dbi->select(
1901
        table  => 'book',
1902
        column => [
cleanup
Yuki Kimoto authored on 2011-06-13
1903
            {book => [qw/title author/]},
1904
            {company => ['name']}
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
1905
        ],
1906
        where  => {'book.author' => 'Ken'},
1907
        join => ['left outer join company on book.company_id = company.id'],
1908
        append => 'order by id limit 5'
removed reconnect method
yuki-kimoto authored on 2010-05-28
1909
    );
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
1910
    
removed register_format()
yuki-kimoto authored on 2010-05-26
1911
    # Fetch
1912
    while (my $row = $result->fetch) {
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
1913
        
removed register_format()
yuki-kimoto authored on 2010-05-26
1914
    }
1915
    
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
1916
    # Fetch as hash
removed register_format()
yuki-kimoto authored on 2010-05-26
1917
    while (my $row = $result->fetch_hash) {
1918
        
1919
    }
1920
    
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
1921
    # Execute SQL with parameter.
1922
    $dbi->execute(
- update_param_tag is DEPREC...
Yuki Kimoto authored on 2011-06-07
1923
        "select id from book where author = :author and title like :title",
updated pod
Yuki Kimoto authored on 2011-06-21
1924
        {author => 'ken', title => '%Perl%'}
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
1925
    );
1926
    
fix heading typos
Terrence Brannon authored on 2011-08-17
1927
=head1 DESCRIPTION
removed reconnect method
yuki-kimoto authored on 2010-05-28
1928

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

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

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

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

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

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

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

            
micro optimization
Yuki Kimoto authored on 2011-07-30
1944
Named place holder support
1945

            
1946
=item *
1947

            
cleanup
Yuki Kimoto authored on 2011-07-29
1948
Model support
1949

            
1950
=item *
1951

            
1952
Connection manager support
1953

            
1954
=item *
pod fix
Yuki Kimoto authored on 2011-01-21
1955

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

            
1960
=item *
1961

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

            
1964
=item *
1965

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

            
1968
=back
pod fix
Yuki Kimoto authored on 2011-01-21
1969

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

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

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

            
micro optimization
Yuki Kimoto authored on 2011-07-30
1977
Module documentations - 
cleanup
Yuki Kimoto authored on 2011-07-29
1978
L<DBIx::Custom::Result>,
1979
L<DBIx::Custom::Query>,
1980
L<DBIx::Custom::Where>,
1981
L<DBIx::Custom::Model>,
1982
L<DBIx::Custom::Order>
updated document
yuki-kimoto authored on 2010-08-08
1983

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

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

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

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

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

            
1997
    my $connector = DBIx::Connector->new(
cleanup
Yuki Kimoto authored on 2011-08-16
1998
        "dbi:mysql:database=$database",
1999
        $user,
2000
        $password,
- dbi_option attribute is re...
Yuki Kimoto authored on 2011-10-05
2001
        DBIx::Custom->new->default_option
- removed EXPERIMENTAL Prefo...
Yuki Kimoto authored on 2011-04-04
2002
    );
2003
    
updated pod
Yuki Kimoto authored on 2011-06-21
2004
    my $dbi = DBIx::Custom->connect(connector => $connector);
- removed EXPERIMENTAL Prefo...
Yuki Kimoto authored on 2011-04-04
2005

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

            
2009
    my $dbi = DBIx::Custom->connect(
2010
      dsn => $dsn, user => $user, password => $password, connector => 1);
2011
    
2012
    my $connector = $dbi->connector; # DBIx::Connector
2013

            
2014
Note that L<DBIx::Connector> must be installed.
2015

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

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

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

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

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

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

            
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
2031
    {
2032
        RaiseError => 1,
2033
        PrintError => 0,
2034
        AutoCommit => 1,
2035
    }
packaging one directory
yuki-kimoto authored on 2009-11-16
2036

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

            
2039
    my $exclude_table = $dbi->exclude_table;
2040
    $dbi = $dbi->exclude_table(qr/pg_/);
2041

            
2042
Excluded table regex.
2043
C<each_column>, C<each_table>, C<type_rule>,
2044
and C<setup_model> methods ignore matching tables.
2045

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

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

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

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

            
2055
    my $last_sql = $dbi->last_sql;
2056
    $dbi = $dbi->last_sql($last_sql);
2057

            
2058
Get last successed SQL executed by C<execute> method.
2059

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

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

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

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

            
2069
    my $option = $dbi->option;
2070
    $dbi = $dbi->option($option);
2071

            
2072
L<DBI> option, used when C<connect> method is executed.
2073
Each value in option override the value of C<default_option>.
2074

            
cleanup
yuki-kimoto authored on 2010-10-17
2075
=head2 C<password>
2076

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

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

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

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

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

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

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

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

            
cleanup
Yuki Kimoto authored on 2011-07-30
2097
You can set quote pair.
2098

            
2099
    $dbi->quote('[]');
2100

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

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

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

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

            
fixed pod
Yuki Kimoto authored on 2011-09-27
2110
    my $safety_character = $dbi->safety_character;
2111
    $dbi = $dbi->safety_character($character);
update pod
Yuki Kimoto authored on 2011-01-27
2112

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

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

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

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

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

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

            
2129
    my $tag_parse = $dbi->tag_parse(0);
2130
    $dbi = $dbi->tag_parse;
2131

            
2132
Enable DEPRECATED tag parsing functionality, default to 1.
2133
If you want to disable tag parsing functionality, set to 0.
2134

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

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

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

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

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

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

            
2149
    [
2150
        {table => 'book', column => 'title', info => {...}},
2151
        {table => 'author', column => 'name', info => {...}}
2152
    ]
2153

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

            
2156
    my $user_column_info
2157
      = $dbi->get_column_info(exclude_table => qr/^system/);
2158
    $dbi->user_column_info($user_column_info);
2159

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

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

            
2165
    my $user_table_info = $dbi->user_table_info;
2166
    $dbi = $dbi->user_table_info($user_table_info);
2167

            
2168
You can set the following data.
2169

            
2170
    [
2171
        {table => 'book', info => {...}},
2172
        {table => 'author', info => {...}}
2173
    ]
2174

            
2175
Usually, you can set return value of C<get_table_info>.
2176

            
2177
    my $user_table_info = $dbi->get_table_info(exclude => qr/^system/);
2178
    $dbi->user_table_info($user_table_info);
2179

            
2180
If C<user_table_info> is set, C<each_table> use C<user_table_info>
2181
to find table info.
2182

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
2219
Create column clause. The follwoing column clause is created.
2220

            
2221
    book.author as "book.author",
2222
    book.title as "book.title"
2223

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

            
cleanup
Yuki Kimoto authored on 2011-06-13
2226
    # Separator is hyphen
2227
    $dbi->separator('-');
2228
    
2229
    book.author as "book-author",
2230
    book.title as "book-title"
2231
    
removed DBIx::Custom commit ...
yuki-kimoto authored on 2010-07-14
2232
=head2 C<connect>
packaging one directory
yuki-kimoto authored on 2009-11-16
2233

            
update pod
Yuki Kimoto authored on 2011-03-13
2234
    my $dbi = DBIx::Custom->connect(
data_source is DEPRECATED! I...
Yuki Kimoto authored on 2011-06-06
2235
        dsn => "dbi:mysql:database=dbname",
update pod
Yuki Kimoto authored on 2011-03-13
2236
        user => 'ken',
2237
        password => '!LFKD%$&',
- dbi_option attribute is re...
Yuki Kimoto authored on 2011-10-05
2238
        option => {mysql_enable_utf8 => 1}
update pod
Yuki Kimoto authored on 2011-03-13
2239
    );
2240

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

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

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

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

            
2251
Get rows count.
2252

            
2253
Options is same as C<select> method's ones.
2254

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

            
adeed EXPERIMENTAL DBIx::Cus...
Yuki Kimoto authored on 2011-03-29
2257
    my $model = $dbi->create_model(
removed EXPERIMETNAL flag fr...
Yuki Kimoto authored on 2011-03-25
2258
        table => 'book',
2259
        primary_key => 'id',
2260
        join => [
2261
            'inner join company on book.comparny_id = company.id'
2262
        ],
2263
    );
2264

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

            
2268
   $dbi->model('book')->select(...);
2269

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

            
2272
    my $dbh = $dbi->dbh;
2273

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

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

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

            
2281
Execute delete statement.
2282

            
2283
The following opitons are available.
2284

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

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

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

            
2292
=item C<id>
2293

            
2294
    id => 4
2295
    id => [4, 5]
2296

            
2297
ID corresponding to C<primary_key>.
2298
You can delete rows by C<id> and C<primary_key>.
2299

            
2300
    $dbi->delete(
fixed pod
Yuki Kimoto authored on 2011-10-20
2301
        primary_key => ['id1', 'id2'],
added EXPERIMENTAL find_tabl...
Yuki Kimoto authored on 2011-08-16
2302
        id => [4, 5],
2303
        table => 'book',
2304
    );
2305

            
2306
The above is same as the followin one.
2307

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

            
2310
=item C<prefix>
2311

            
2312
    prefix => 'some'
2313

            
2314
prefix before table name section.
2315

            
2316
    delete some from book
2317

            
2318
=item C<table>
2319

            
2320
    table => 'book'
2321

            
2322
Table name.
2323

            
2324
=item C<where>
2325

            
2326
Same as C<select> method's C<where> option.
2327

            
2328
=back
2329

            
2330
=head2 C<delete_all>
2331

            
2332
    $dbi->delete_all(table => $table);
2333

            
2334
Execute delete statement for all rows.
2335
Options is same as C<delete>.
2336

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

            
2339
    $dbi->each_column(
2340
        sub {
2341
            my ($dbi, $table, $column, $column_info) = @_;
2342
            
2343
            my $type = $column_info->{TYPE_NAME};
2344
            
2345
            if ($type eq 'DATE') {
2346
                # ...
2347
            }
2348
        }
2349
    );
2350

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

            
2356
If C<user_column_info> is set, C<each_column> method use C<user_column_info>
2357
infromation, you can improve the performance of C<each_column> in
2358
the following way.
2359

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

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

            
2366
    $dbi->each_table(
2367
        sub {
2368
            my ($dbi, $table, $table_info) = @_;
2369
            
2370
            my $table_name = $table_info->{TABLE_NAME};
2371
        }
2372
    );
2373

            
improved pod
Yuki Kimoto authored on 2011-10-14
2374
Iterate all table informationsfrom in database.
2375
Argument is callback which is executed when one table is found.
2376
Callback receive three arguments, C<DBIx::Custom object>, C<table name>,
2377
C<table information>.
2378

            
2379
If C<user_table_info> is set, C<each_table> method use C<user_table_info>
2380
infromation, you can improve the performance of C<each_table> in
2381
the following way.
2382

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

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

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

            
2394
    my $result = $dbi->execute(
2395
      "select * from book where title = :book.title and author like :book.author",
2396
      {'book.title' => 'Perl', 'book.author' => '%Ken%'}
update pod
Yuki Kimoto authored on 2011-03-13
2397
    );
2398

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

            
I call :title named placehol...
Yuki Kimoto authored on 2011-07-30
2405
Named placeholder such as C<:title> is replaced by placeholder C<?>.
added EXPERIMENTAL parameter...
Yuki Kimoto authored on 2011-07-29
2406
    
micro optimization
Yuki Kimoto authored on 2011-07-30
2407
    # Original
added EXPERIMENTAL parameter...
Yuki Kimoto authored on 2011-07-29
2408
    select * from book where title = :title and author like :author
2409
    
micro optimization
Yuki Kimoto authored on 2011-07-30
2410
    # Replaced
added EXPERIMENTAL parameter...
Yuki Kimoto authored on 2011-07-29
2411
    select * from where title = ? and author like ?;
update pod
Yuki Kimoto authored on 2011-03-13
2412

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

            
micro optimization
Yuki Kimoto authored on 2011-07-30
2416
    # Original
added EXPERIMENTAL parameter...
Yuki Kimoto authored on 2011-07-29
2417
    select * from book where :title{=} and :author{like}
2418
    
micro optimization
Yuki Kimoto authored on 2011-07-30
2419
    # Replaced
update pod
Yuki Kimoto authored on 2011-03-13
2420
    select * from where title = ? and author like ?;
2421

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

            
2426
    select * from where title = "aa\\:bb";
2427

            
cleanup
Yuki Kimoto authored on 2011-10-20
2428
B<OPTIONS>
2429

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

            
2432
=over 4
2433

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

            
2436
You can filter sql after the sql is build.
2437

            
2438
    after_build_sql => $code_ref
2439

            
2440
The following one is one example.
2441

            
2442
    $dbi->select(
2443
        table => 'book',
2444
        column => 'distinct(name)',
2445
        after_build_sql => sub {
2446
            "select count(*) from ($_[0]) as t1"
2447
        }
2448
    );
2449

            
2450
The following SQL is executed.
2451

            
2452
    select count(*) from (select distinct(name) from book) as t1;
2453

            
cleanup
Yuki Kimoto authored on 2011-10-20
2454
=item C<append>
2455

            
2456
    append => 'order by name'
2457

            
2458
Append some statement after SQL.
2459

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

            
2462
Specify database bind data type.
2463

            
2464
    bind_type => [image => DBI::SQL_BLOB]
2465
    bind_type => [[qw/image audio/] => DBI::SQL_BLOB]
2466

            
2467
This is used to bind parameter by C<bind_param> of statment handle.
2468

            
2469
    $sth->bind_param($pos, $value, DBI::SQL_BLOB);
2470

            
update pod
Yuki Kimoto authored on 2011-03-13
2471
=item C<filter>
updated pod
Yuki Kimoto authored on 2011-06-09
2472
    
2473
    filter => {
2474
        title  => sub { uc $_[0] }
2475
        author => sub { uc $_[0] }
2476
    }
update pod
Yuki Kimoto authored on 2011-03-13
2477

            
updated pod
Yuki Kimoto authored on 2011-06-09
2478
    # Filter name
2479
    filter => {
2480
        title  => 'upper_case',
2481
        author => 'upper_case'
2482
    }
2483
        
2484
    # At once
2485
    filter => [
2486
        [qw/title author/]  => sub { uc $_[0] }
2487
    ]
2488

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

            
- removed placeholder count ...
Yuki Kimoto authored on 2011-08-22
2494
=item C<id>
2495

            
2496
    id => 4
2497
    id => [4, 5]
2498

            
2499
ID corresponding to C<primary_key>.
2500
You can delete rows by C<id> and C<primary_key>.
2501

            
2502
    $dbi->execute(
2503
        "select * from book where id1 = :id1 and id2 = :id2",
2504
        {},
fixed pod
Yuki Kimoto authored on 2011-10-20
2505
        primary_key => ['id1', 'id2'],
- removed placeholder count ...
Yuki Kimoto authored on 2011-08-22
2506
        id => [4, 5],
2507
    );
2508

            
2509
The above is same as the followin one.
2510

            
2511
    $dbi->execute(
2512
        "select * from book where id1 = :id1 and id2 = :id2",
2513
        {id1 => 4, id2 => 5}
2514
    );
2515

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

            
2518
    query => 1
2519

            
2520
C<execute> method return L<DBIx::Custom::Query> object, not executing SQL.
cleanup
Yuki Kimoto authored on 2011-07-30
2521
You can check SQL or get statment handle.
updated pod
Yuki Kimoto authored on 2011-06-21
2522

            
2523
    my $sql = $query->sql;
cleanup
Yuki Kimoto authored on 2011-07-30
2524
    my $sth = $query->sth;
Added execute method's query...
Yuki Kimoto authored on 2011-07-30
2525
    my $columns = $query->columns;
2526
    
2527
If you want to execute SQL fast, you can do the following way.
2528

            
2529
    my $query;
cleanup
Yuki Kimoto authored on 2011-10-21
2530
    for my $row (@$rows) {
Added execute method's query...
Yuki Kimoto authored on 2011-07-30
2531
      $query ||= $dbi->insert($row, table => 'table1', query => 1);
cleanup
Yuki Kimoto authored on 2011-10-20
2532
      $dbi->execute($query, $row);
Added execute method's query...
Yuki Kimoto authored on 2011-07-30
2533
    }
2534

            
2535
Statement handle is reused and SQL parsing is finished,
2536
so you can get more performance than normal way.
cleanup
Yuki Kimoto authored on 2011-07-30
2537

            
2538
If you want to execute SQL as possible as fast and don't need filtering.
Added execute method's query...
Yuki Kimoto authored on 2011-07-30
2539
You can do the following way.
cleanup
Yuki Kimoto authored on 2011-07-30
2540
    
2541
    my $query;
2542
    my $sth;
cleanup
Yuki Kimoto authored on 2011-10-21
2543
    for my $row (@$rows) {
cleanup
Yuki Kimoto authored on 2011-07-30
2544
      $query ||= $dbi->insert($row, table => 'book', query => 1);
2545
      $sth ||= $query->sth;
2546
      $sth->execute(map { $row->{$_} } sort keys %$row);
2547
    }
2548

            
2549
Note that $row must be simple hash reference, such as
2550
{title => 'Perl', author => 'Ken'}.
2551
and don't forget to sort $row values by $row key asc order.
updated document
Yuki Kimoto authored on 2011-06-09
2552

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

            
cleanup
Yuki Kimoto authored on 2011-10-20
2555
    primary_key => 'id'
2556
    primary_key => ['id1', 'id2']
2557

            
2558
Priamry key. This is used when C<id> option find primary key.
- removed placeholder count ...
Yuki Kimoto authored on 2011-08-22
2559

            
updated pod
Yuki Kimoto authored on 2011-06-09
2560
=item C<table>
2561
    
2562
    table => 'author'
2563

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

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

            
updated pod
Yuki Kimoto authored on 2011-06-21
2571
    # Same
2572
    $dbi->execute(
2573
      "select * from book where title = :book.title and author = :book.author",
2574
      {title => 'Perl', author => 'Ken');
added EXPERIMENTAL execute()...
Yuki Kimoto authored on 2011-06-09
2575

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

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

            
2580
Table alias. Key is real table name, value is alias table name.
2581
If you set C<table_alias>, you can enable C<into1> and C<into2> type rule
2582
on alias table name.
2583

            
added EXPERIMENTAL reuse_sth...
Yuki Kimoto authored on 2011-10-22
2584
=item C<reuse_sth EXPERIMENTAL>
2585
    
2586
    reuse_sth => $has_ref
2587

            
2588
Reuse statament handle if the hash reference variable is set.
2589
    
2590
    my $sth = {};
2591
    $dbi->execute($sql, $param, sth => $sth);
2592

            
2593
This will improved performance when same sql is executed repeatedly
2594
because generally creating statement handle is slow.
2595

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

            
2598
    type_rule_off => 1
2599

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

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

            
2604
    type_rule1_off => 1
2605

            
2606
Turn C<into1> type rule off.
2607

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

            
2610
    type_rule2_off => 1
2611

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

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

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

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

            
2620
get column infomation except for one which match C<exclude_table> pattern.
2621

            
2622
    [
2623
        {table => 'book', column => 'title', info => {...}},
2624
        {table => 'author', column => 'name' info => {...}}
2625
    ]
2626

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

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

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

            
2633
    [
2634
        {table => 'book', info => {...}},
2635
        {table => 'author', info => {...}}
2636
    ]
add experimental update_at()...
Yuki Kimoto authored on 2011-02-21
2637

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

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

            
2642
    $dbi->helper(
2643
        update_or_insert => sub {
2644
            my $self = shift;
2645
            
2646
            # Process
2647
        },
2648
        find_or_create   => sub {
2649
            my $self = shift;
2650
            
2651
            # Process
2652
        }
2653
    );
2654

            
2655
Register helper. These helper is called directly from L<DBIx::Custom> object.
2656

            
2657
    $dbi->update_or_insert;
2658
    $dbi->find_or_create;
2659

            
cleanup
yuki-kimoto authored on 2010-10-17
2660
=head2 C<insert>
2661

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

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

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

            
2670
    {date => \"NOW()"}
2671

            
cleanup
Yuki Kimoto authored on 2011-10-20
2672
B<options>
2673

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

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

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

            
updated document
Yuki Kimoto authored on 2011-06-09
2681
    id => 4
2682
    id => [4, 5]
update pod
Yuki Kimoto authored on 2011-03-13
2683

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

            
update pod
Yuki Kimoto authored on 2011-03-13
2687
    $dbi->insert(
updated document
Yuki Kimoto authored on 2011-06-09
2688
        {title => 'Perl', author => 'Ken'}
fixed pod
Yuki Kimoto authored on 2011-10-20
2689
        primary_key => ['id1', 'id2'],
added EXPERIMENTAL execute()...
Yuki Kimoto authored on 2011-06-09
2690
        id => [4, 5],
updated document
Yuki Kimoto authored on 2011-06-09
2691
        table => 'book'
update pod
Yuki Kimoto authored on 2011-03-13
2692
    );
added EXPERIMENTAL execute()...
Yuki Kimoto authored on 2011-06-09
2693

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

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

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

            
2703
    prefix => 'or replace'
2704

            
2705
prefix before table name section
2706

            
2707
    insert or replace into book
2708

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

            
2711
    table => 'book'
2712

            
2713
Table name.
2714

            
sqlfilter option is renamed ...
Yuki Kimoto authored on 2011-09-16
2715
=item C<timestamp>
- added EXPERIMENTAL timesta...
Yuki Kimoto authored on 2011-09-02
2716

            
2717
    timestamp => 1
2718

            
2719
If this value is set to 1,
2720
automatically created timestamp column is set based on
2721
C<timestamp> attribute's C<insert> value.
2722

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

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

            
2727
placeholder wrapped string.
2728

            
2729
If the following statement
2730

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

            
2734
is executed, the following SQL is executed.
2735

            
2736
    insert into book price values ( ? + 5 );
2737

            
update pod
Yuki Kimoto authored on 2011-03-13
2738
=back
2739

            
2740
=over 4
2741

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

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

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

            
update pod
Yuki Kimoto authored on 2011-03-13
2749
    lib / MyModel.pm
2750
        / MyModel / book.pm
2751
                  / company.pm
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
2752

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

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

            
2757
    package MyModel;
updated pod
Yuki Kimoto authored on 2011-06-21
2758
    use DBIx::Custom::Model -base;
update pod
Yuki Kimoto authored on 2011-03-13
2759
    
2760
    1;
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
2761

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

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

            
update pod
Yuki Kimoto authored on 2011-03-13
2766
    package MyModel::book;
updated pod
Yuki Kimoto authored on 2011-06-21
2767
    use MyModel -base;
update pod
Yuki Kimoto authored on 2011-03-13
2768
    
2769
    1;
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
2770

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

            
update pod
Yuki Kimoto authored on 2011-03-13
2773
    package MyModel::company;
updated pod
Yuki Kimoto authored on 2011-06-21
2774
    use MyModel -base;
update pod
Yuki Kimoto authored on 2011-03-13
2775
    
2776
    1;
2777
    
updated pod
Yuki Kimoto authored on 2011-06-21
2778
MyModel::book and MyModel::company is included by C<include_model>.
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
2779

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

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

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

            
sqlfilter option is renamed ...
Yuki Kimoto authored on 2011-09-16
2787
=head2 C<insert_timestamp>
- added EXPERIMENTAL update_...
Yuki Kimoto authored on 2011-09-12
2788

            
moved DBIx::Custom::Guide to...
Yuki Kimoto authored on 2011-10-22
2789
    $dbi->insert_timestamp(
2790
      [qw/created_at updated_at/]
2791
        => sub { Time::Piece->localtime->strftime("%Y-%m-%d %H:%M:%S") }
2792
    );
- added EXPERIMENTAL update_...
Yuki Kimoto authored on 2011-09-12
2793

            
removed EXPERIMETNAL flag fr...
Yuki Kimoto authored on 2011-10-19
2794
Timestamp value when C<insert> method is executed
- added EXPERIMENTAL update_...
Yuki Kimoto authored on 2011-09-12
2795
with C<timestamp> option.
2796

            
removed EXPERIMETNAL flag fr...
Yuki Kimoto authored on 2011-10-19
2797
If C<insert_timestamp> is set and C<insert> method is executed
2798
with C<timestamp> option, column C<created_at> and C<update_at>
2799
is automatically set to the value like "2010-10-11 10:12:54".
2800

            
moved DBIx::Custom::Guide to...
Yuki Kimoto authored on 2011-10-22
2801
    $dbi->insert($param, table => 'book', timestamp => 1);
sqlfilter option is renamed ...
Yuki Kimoto authored on 2011-09-16
2802

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

            
2805
    my $like_value = $dbi->like_value
2806

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

            
2809
    sub { "%$_[0]%" }
2810

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

            
2813
    my $mapper = $dbi->mapper(param => $param);
2814

            
2815
Create a new L<DBIx::Custom::Mapper> object.
2816

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

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

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

            
2823
    {key1 => [1, 1], key2 => 2}
2824

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

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

            
2829
    my $model = $dbi->model('book');
2830

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

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

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

            
2838
Create column clause for myself. The follwoing column clause is created.
2839

            
2840
    book.author as author,
2841
    book.title as title
2842

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

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

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

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

            
2856
    my $not_exists = $dbi->not_exists;
2857

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

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

            
2863
    my $order = $dbi->order;
2864

            
2865
Create a new L<DBIx::Custom::Order> object.
2866

            
cleanup
yuki-kimoto authored on 2010-10-17
2867
=head2 C<register_filter>
2868

            
update pod
Yuki Kimoto authored on 2011-03-13
2869
    $dbi->register_filter(
2870
        # Time::Piece object to database DATE format
2871
        tp_to_date => sub {
2872
            my $tp = shift;
2873
            return $tp->strftime('%Y-%m-%d');
2874
        },
2875
        # database DATE format to Time::Piece object
2876
        date_to_tp => sub {
2877
           my $date = shift;
2878
           return Time::Piece->strptime($date, '%Y-%m-%d');
2879
        }
2880
    );
cleanup
yuki-kimoto authored on 2010-10-17
2881
    
update pod
Yuki Kimoto authored on 2011-03-13
2882
Register filters, used by C<filter> option of many methods.
cleanup
yuki-kimoto authored on 2010-10-17
2883

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

            
select method column option ...
Yuki Kimoto authored on 2011-02-22
2886
    my $result = $dbi->select(
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
2887
        table  => 'book',
2888
        column => ['author', 'title'],
2889
        where  => {author => 'Ken'},
select method column option ...
Yuki Kimoto authored on 2011-02-22
2890
    );
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
2891
    
updated document
Yuki Kimoto authored on 2011-06-09
2892
Execute select statement.
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
2893

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

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

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

            
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
2901
=item C<column>
2902
    
updated document
Yuki Kimoto authored on 2011-06-09
2903
    column => 'author'
2904
    column => ['author', 'title']
2905

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

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

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

            
updated document
Yuki Kimoto authored on 2011-06-09
2914
    column => [
updated pod
Yuki Kimoto authored on 2011-06-07
2915
        {book => [qw/author title/]},
2916
        {person => [qw/name age/]}
updated document
Yuki Kimoto authored on 2011-06-09
2917
    ]
updated pod
Yuki Kimoto authored on 2011-06-07
2918

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

            
2921
    book.author as "book.author",
2922
    book.title as "book.title",
2923
    person.name as "person.name",
2924
    person.age as "person.age"
2925

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

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

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

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

            
updated document
Yuki Kimoto authored on 2011-06-09
2937
=item C<filter>
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
2938

            
updated document
Yuki Kimoto authored on 2011-06-09
2939
Same as C<execute> method's C<filter> option.
2940

            
2941
=item C<id>
2942

            
2943
    id => 4
2944
    id => [4, 5]
2945

            
2946
ID corresponding to C<primary_key>.
2947
You can select rows by C<id> and C<primary_key>.
2948

            
2949
    $dbi->select(
fixed pod
Yuki Kimoto authored on 2011-10-20
2950
        primary_key => ['id1', 'id2'],
updated document
Yuki Kimoto authored on 2011-06-09
2951
        id => [4, 5],
2952
        table => 'book'
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
2953
    );
2954

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

            
updated pod
Yuki Kimoto authored on 2011-04-25
2957
    $dbi->select(
updated document
Yuki Kimoto authored on 2011-06-09
2958
        where => {id1 => 4, id2 => 5},
2959
        table => 'book'
where can recieve array refr...
Yuki Kimoto authored on 2011-03-24
2960
    );
2961
    
cleanup
Yuki Kimoto authored on 2011-10-20
2962
=item C<param>
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
2963

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

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

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

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

            
2976
    prefix => 'SQL_CALC_FOUND_ROWS'
2977

            
2978
Prefix of column cluase
2979

            
2980
    select SQL_CALC_FOUND_ROWS title, author from book;
2981

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

            
2984
    join => [
2985
        'left outer join company on book.company_id = company_id',
2986
        'left outer join location on company.location_id = location.id'
2987
    ]
2988
        
2989
Join clause. If column cluase or where clause contain table name like "company.name",
2990
join clausees needed when SQL is created is used automatically.
update pod
Yuki Kimoto authored on 2011-03-12
2991

            
2992
    $dbi->select(
2993
        table => 'book',
cleanup
Yuki Kimoto authored on 2011-06-13
2994
        column => ['company.location_id as location_id'],
update pod
Yuki Kimoto authored on 2011-03-12
2995
        where => {'company.name' => 'Orange'},
2996
        join => [
2997
            'left outer join company on book.company_id = company.id',
2998
            'left outer join location on company.location_id = location.id'
2999
        ]
3000
    );
3001

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

            
cleanup
Yuki Kimoto authored on 2011-06-13
3005
    select company.location_id as location_id
update pod
Yuki Kimoto authored on 2011-03-12
3006
    from book
3007
      left outer join company on book.company_id = company.id
cleanup
Yuki Kimoto authored on 2011-06-13
3008
    where company.name = ?;
update pod
Yuki Kimoto authored on 2011-03-12
3009

            
added join new syntax
Yuki Kimoto authored on 2011-07-28
3010
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
3011
the join clause correctly.
added join new syntax
Yuki Kimoto authored on 2011-07-28
3012

            
3013
    $dbi->select(
3014
        table => 'book',
3015
        column => ['company.location_id as location_id'],
3016
        where => {'company.name' => 'Orange'},
3017
        join => [
3018
            {
3019
                clause => 'left outer join location on company.location_id = location.id',
3020
                table => ['company', 'location']
3021
            }
3022
        ]
3023
    );
3024

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

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

            
updated document
Yuki Kimoto authored on 2011-06-09
3029
Table name.
updated pod
Yuki Kimoto authored on 2011-06-08
3030

            
updated document
Yuki Kimoto authored on 2011-06-09
3031
=item C<where>
3032
    
3033
    # Hash refrence
3034
    where => {author => 'Ken', 'title' => 'Perl'}
3035
    
3036
    # DBIx::Custom::Where object
3037
    where => $dbi->where(
3038
        clause => ['and', 'author = :author', 'title like :title'],
3039
        param  => {author => 'Ken', title => '%Perl%'}
3040
    );
updated pod
Yuki Kimoto authored on 2011-06-21
3041
    
3042
    # Array reference 1 (array reference, hash referenc). same as above
3043
    where => [
3044
        ['and', 'author = :author', 'title like :title'],
3045
        {author => 'Ken', title => '%Perl%'}
3046
    ];    
3047
    
3048
    # Array reference 2 (String, hash reference)
3049
    where => [
3050
        'title like :title',
3051
        {title => '%Perl%'}
3052
    ]
3053
    
3054
    # String
3055
    where => 'title is null'
update pod
Yuki Kimoto authored on 2011-03-12
3056

            
cleanup
Yuki Kimoto authored on 2011-10-20
3057
Where clause. See L<DBIx::Custom::Where>.
updated document
Yuki Kimoto authored on 2011-06-09
3058
    
update pod
Yuki Kimoto authored on 2011-03-12
3059
=back
cleanup
Yuki Kimoto authored on 2011-03-08
3060

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

            
3063
    $dbi->setup_model;
3064

            
3065
Setup all model objects.
3066
C<columns> of model object is automatically set, parsing database information.
3067

            
3068
=head2 C<type_rule>
3069

            
3070
    $dbi->type_rule(
3071
        into1 => {
3072
            date => sub { ... },
3073
            datetime => sub { ... }
3074
        },
3075
        into2 => {
3076
            date => sub { ... },
3077
            datetime => sub { ... }
3078
        },
3079
        from1 => {
3080
            # DATE
3081
            9 => sub { ... },
3082
            # DATETIME or TIMESTAMP
3083
            11 => sub { ... },
3084
        }
3085
        from2 => {
3086
            # DATE
3087
            9 => sub { ... },
3088
            # DATETIME or TIMESTAMP
3089
            11 => sub { ... },
3090
        }
3091
    );
3092

            
3093
Filtering rule when data is send into and get from database.
3094
This has a little complex problem.
3095

            
3096
In C<into1> and C<into2> you can specify
3097
type name as same as type name defined
3098
by create table, such as C<DATETIME> or C<DATE>.
3099

            
3100
Note that type name and data type don't contain upper case.
3101
If these contain upper case charactor, you convert it to lower case.
3102

            
3103
C<into2> is executed after C<into1>.
3104

            
3105
Type rule of C<into1> and C<into2> is enabled on the following
3106
column name.
3107

            
3108
=over 4
3109

            
3110
=item 1. column name
3111

            
3112
    issue_date
3113
    issue_datetime
3114

            
3115
This need C<table> option in each method.
3116

            
3117
=item 2. table name and column name, separator is dot
3118

            
3119
    book.issue_date
3120
    book.issue_datetime
3121

            
3122
=back
3123

            
3124
You get all type name used in database by C<available_typename>.
3125

            
3126
    print $dbi->available_typename;
3127

            
3128
In C<from1> and C<from2> you specify data type, not type name.
3129
C<from2> is executed after C<from1>.
3130
You get all data type by C<available_datatype>.
3131

            
3132
    print $dbi->available_datatype;
3133

            
3134
You can also specify multiple types at once.
3135

            
3136
    $dbi->type_rule(
3137
        into1 => [
3138
            [qw/DATE DATETIME/] => sub { ... },
3139
        ],
3140
    );
3141

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

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

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

            
3148
If you want to set constant value to row data, use scalar reference
3149
as parameter value.
3150

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

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

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

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

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

            
updated document
Yuki Kimoto authored on 2011-06-09
3162
    id => 4
3163
    id => [4, 5]
- insert, insert_at, update,...
Yuki Kimoto authored on 2011-06-08
3164

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

            
DEPRECATED select() param op...
Yuki Kimoto authored on 2011-04-25
3168
    $dbi->update(
updated document
Yuki Kimoto authored on 2011-06-09
3169
        {title => 'Perl', author => 'Ken'}
fixed pod
Yuki Kimoto authored on 2011-10-20
3170
        primary_key => ['id1', 'id2'],
updated document
Yuki Kimoto authored on 2011-06-09
3171
        id => [4, 5],
3172
        table => 'book'
where can recieve array refr...
Yuki Kimoto authored on 2011-03-24
3173
    );
update pod
Yuki Kimoto authored on 2011-03-13
3174

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

            
updated document
Yuki Kimoto authored on 2011-06-09
3177
    $dbi->update(
3178
        {title => 'Perl', author => 'Ken'}
3179
        where => {id1 => 4, id2 => 5},
3180
        table => 'book'
3181
    );
update pod
Yuki Kimoto authored on 2011-03-13
3182

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

            
3185
    prefix => 'or replace'
3186

            
3187
prefix before table name section
3188

            
3189
    update or replace book
3190

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

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

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

            
sqlfilter option is renamed ...
Yuki Kimoto authored on 2011-09-16
3197
=item C<timestamp>
- added EXPERIMENTAL timesta...
Yuki Kimoto authored on 2011-09-02
3198

            
3199
    timestamp => 1
3200

            
3201
If this value is set to 1,
3202
automatically updated timestamp column is set based on
3203
C<timestamp> attribute's C<update> value.
3204

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

            
3207
Same as C<select> method's C<where> option.
3208

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

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

            
3213
placeholder wrapped string.
3214

            
3215
If the following statement
3216

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

            
3220
is executed, the following SQL is executed.
3221

            
3222
    update book set price =  ? + 5;
3223

            
updated pod
Yuki Kimoto authored on 2011-06-08
3224
=back
update pod
Yuki Kimoto authored on 2011-03-13
3225

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

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

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

            
- removed DEPRECATED status ...
Yuki Kimoto authored on 2011-10-11
3233
=head2 C<update_or_insert EXPERIMENTAL>
3234
    
3235
    # Where
3236
    $dbi->update_or_insert(
3237
        {id => 1, title => 'Perl'},
3238
        table => 'book',
3239
        where => {id => 1},
3240
        select_option => {append => 'for update'}
3241
    );
3242
    
3243
    # ID
3244
    $dbi->update_or_insert(
3245
        {title => 'Perl'},
3246
        table => 'book',
3247
        id => 1,
3248
        primary_key => 'id',
3249
        select_option => {append => 'for update'}
3250
    );
3251
    
3252
Update or insert.
3253

            
3254
In both examples, the following SQL is executed.
3255

            
3256
    # In case insert
3257
    insert into book (id, title) values (?, ?)
3258
    
3259
    # In case update
3260
    update book set (id = ?, title = ?) where book.id = ?
3261

            
3262
The following opitons are available adding to C<update> option.
3263

            
3264
=over 4
3265

            
3266
=item C<select_option>
3267

            
3268
    select_option => {append => 'for update'}
3269

            
3270
select method option,
3271
select method is used to check the row is already exists.
3272

            
sqlfilter option is renamed ...
Yuki Kimoto authored on 2011-09-16
3273
=head2 C<update_timestamp>
- added EXPERIMENTAL update_...
Yuki Kimoto authored on 2011-09-12
3274

            
removed EXPERIMETNAL flag fr...
Yuki Kimoto authored on 2011-10-19
3275
    $dbi->update_timestamp(
3276
      updated_at
3277
        => sub { Time::Piece->localtime->strftime("%Y-%m-%d %H:%M:%S") }
cleanup
Yuki Kimoto authored on 2011-03-09
3278
    );
fix tests
Yuki Kimoto authored on 2011-01-18
3279

            
removed EXPERIMETNAL flag fr...
Yuki Kimoto authored on 2011-10-19
3280
Timestamp value when C<update> method is executed
3281
with C<timestamp> option.
cleanup
Yuki Kimoto authored on 2011-01-12
3282

            
removed EXPERIMETNAL flag fr...
Yuki Kimoto authored on 2011-10-19
3283
If C<insert_timestamp> is set and C<insert> method is executed
3284
with C<timestamp> option, column C<update_at>
3285
is automatically set to the value like "2010-10-11 10:12:54".
cleanup
Yuki Kimoto authored on 2011-01-12
3286

            
removed EXPERIMETNAL flag fr...
Yuki Kimoto authored on 2011-10-19
3287
>|perl|
3288
$dbi->update($param, table => 'book', timestamp => 1);
3289
||<
cleanup
Yuki Kimoto authored on 2011-01-12
3290

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

            
3293
    $dbi->show_datatype($table);
3294

            
3295
Show data type of the columns of specified table.
3296

            
3297
    book
3298
    title: 5
3299
    issue_date: 91
3300

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

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

            
3305
    $dbi->show_tables;
3306

            
3307
Show tables.
3308

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

            
3311
    $dbi->show_typename($table);
3312

            
3313
Show type name of the columns of specified table.
3314

            
3315
    book
3316
    title: varchar
3317
    issue_date: date
3318

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

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

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

            
3325
Create values clause.
3326

            
3327
    (title, author) values (title = :title, age = :age);
3328

            
3329
You can use this in insert statement.
3330

            
3331
    my $insert_sql = "insert into book $values_clause";
3332

            
3333
=head2 C<where>
3334

            
3335
    my $where = $dbi->where(
3336
        clause => ['and', 'title = :title', 'author = :author'],
3337
        param => {title => 'Perl', author => 'Ken'}
3338
    );
3339

            
3340
Create a new L<DBIx::Custom::Where> object.
3341

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

            
3344
=head2 C<DBIX_CUSTOM_DEBUG>
3345

            
3346
If environment variable C<DBIX_CUSTOM_DEBUG> is set to true,
3347
executed SQL and bind values are printed to STDERR.
3348

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

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

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

            
3355
L<DBIx::Custom>
3356

            
3357
    # Attribute methods
- dbi_option attribute is re...
Yuki Kimoto authored on 2011-10-05
3358
    default_dbi_option # will be removed 2017/1/1
3359
    dbi_option # will be removed 2017/1/1
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3360
    data_source # will be removed at 2017/1/1
3361
    dbi_options # will be removed at 2017/1/1
3362
    filter_check # will be removed at 2017/1/1
3363
    reserved_word_quote # will be removed at 2017/1/1
3364
    cache_method # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3365
    
3366
    # Methods
- method method of DBIx::Cus...
Yuki Kimoto authored on 2011-10-10
3367
    method # will be removed at 2017/1/1
- update_param is DEPRECATED...
Yuki Kimoto authored on 2011-10-04
3368
    assign_param # will be removed at 2017/1/1
3369
    update_param # will be removed at 2017/1/1
3370
    insert_param # will be removed at 2017/1/1
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3371
    create_query # will be removed at 2017/1/1
3372
    apply_filter # will be removed at 2017/1/1
3373
    select_at # will be removed at 2017/1/1
3374
    delete_at # will be removed at 2017/1/1
3375
    update_at # will be removed at 2017/1/1
3376
    insert_at # will be removed at 2017/1/1
3377
    register_tag # will be removed at 2017/1/1
3378
    default_bind_filter # will be removed at 2017/1/1
3379
    default_fetch_filter # will be removed at 2017/1/1
3380
    insert_param_tag # will be removed at 2017/1/1
update pod
Yuki Kimoto authored on 2011-08-10
3381
    register_tag # will be removed at 2017/1/1
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3382
    register_tag_processor # will be removed at 2017/1/1
3383
    update_param_tag # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3384
    
3385
    # Options
cleanup
Yuki Kimoto authored on 2011-10-21
3386
    select method where_param option # will be removed 2017/1/1
cleanup
Yuki Kimoto authored on 2011-10-21
3387
    delete method where_param option # will be removed 2017/1/1
cleanup
Yuki Kimoto authored on 2011-10-21
3388
    update method where_param option # will be removed 2017/1/1
cleanup
Yuki Kimoto authored on 2011-10-21
3389
    insert method param option # will be removed at 2017/1/1
insert method's id option is...
Yuki Kimoto authored on 2011-10-10
3390
    insert method id option # will be removed at 2017/1/1
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3391
    select method relation option # will be removed at 2017/1/1
3392
    select method column option [COLUMN, as => ALIAS] format
3393
      # will be removed at 2017/1/1
sqlfilter option is renamed ...
Yuki Kimoto authored on 2011-09-16
3394
    execute method's sqlfilter option # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3395
    
3396
    # Others
cleanup
Yuki Kimoto authored on 2011-07-28
3397
    execute("select * from {= title}"); # execute method's
3398
                                        # tag parsing functionality
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3399
                                        # will be removed at 2017/1/1
3400
    Query caching # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3401

            
3402
L<DBIx::Custom::Model>
3403

            
DBIx::Custom::Query filters ...
Yuki Kimoto authored on 2011-07-30
3404
    # Attribute methods
- method method of DBIx::Cus...
Yuki Kimoto authored on 2011-10-10
3405
    method # will be removed at 2017/1/1
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3406
    filter # will be removed at 2017/1/1
3407
    name # will be removed at 2017/1/1
3408
    type # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3409

            
3410
L<DBIx::Custom::Query>
3411
    
DBIx::Custom::Query filters ...
Yuki Kimoto authored on 2011-07-30
3412
    # Attribute methods
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3413
    default_filter # will be removed at 2017/1/1
DBIx::Custom::Query filters ...
Yuki Kimoto authored on 2011-07-30
3414
    table # will be removed at 2017/1/1
3415
    filters # will be removed at 2017/1/1
3416
    
3417
    # Methods
3418
    filter # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3419

            
3420
L<DBIx::Custom::QueryBuilder>
3421
    
DBIx::Custom::Query filters ...
Yuki Kimoto authored on 2011-07-30
3422
    # Attribute methods
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3423
    tags # will be removed at 2017/1/1
3424
    tag_processors # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3425
    
DBIx::Custom::Query filters ...
Yuki Kimoto authored on 2011-07-30
3426
    # Methods
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3427
    register_tag # will be removed at 2017/1/1
3428
    register_tag_processor # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3429
    
3430
    # Others
3431
    build_query("select * from {= title}"); # tag parsing functionality
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3432
                                            # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3433

            
3434
L<DBIx::Custom::Result>
3435
    
DBIx::Custom::Query filters ...
Yuki Kimoto authored on 2011-07-30
3436
    # Attribute methods
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3437
    filter_check # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3438
    
3439
    # Methods
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3440
    end_filter # will be removed at 2017/1/1
3441
    remove_end_filter # will be removed at 2017/1/1
3442
    remove_filter # will be removed at 2017/1/1
3443
    default_filter # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3444

            
3445
L<DBIx::Custom::Tag>
3446

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

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

            
3451
If a functionality is DEPRECATED, you can know it by DEPRECATED warnings
3452
except for attribute method.
3453
You can check all DEPRECATED functionalities by document.
3454
DEPRECATED functionality is removed after five years,
3455
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
3456
I extend one year each time he tell me it.
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3457

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

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

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

            
3464
C<< <kimoto.yuki at gmail.com> >>
3465

            
3466
L<http://github.com/yuki-kimoto/DBIx-Custom>
3467

            
removed reconnect method
yuki-kimoto authored on 2010-05-28
3468
=head1 AUTHOR
3469

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

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

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

            
3476
This program is free software; you can redistribute it and/or modify it
3477
under the same terms as Perl itself.
3478

            
3479
=cut