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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
1146
    # Filter SQL
sqlfilter option is renamed ...
Yuki Kimoto authored on 2011-09-16
1147
    if ($after_build_sql) {
added EXPERIMENTAL execute m...
Yuki Kimoto authored on 2011-08-14
1148
        my $sql = $query->sql;
sqlfilter option is renamed ...
Yuki Kimoto authored on 2011-09-16
1149
        $sql = $after_build_sql->($sql);
added EXPERIMENTAL execute m...
Yuki Kimoto authored on 2011-08-14
1150
        $query->sql($sql);
1151
    }
1152
        
added EXPERIMENTAL last_sql ...
Yuki Kimoto authored on 2011-07-11
1153
    # Save sql
1154
    $self->last_sql($query->sql);
1155
    
updated pod
Yuki Kimoto authored on 2011-06-21
1156
    # Prepare statement handle
1157
    my $sth;
1158
    eval { $sth = $self->dbh->prepare($query->{sql})};
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
cleanup
Yuki Kimoto authored on 2011-10-21
1208
        for my $i (1 .. 2) {
EXPERIMENTAL type_rule argum...
Yuki Kimoto authored on 2011-06-17
1209
            my $type_filter = $type_filters->{$i};
micro optimization
Yuki Kimoto authored on 2011-07-30
1210
            my $tf = $self->{"_into$i"}->{dot}->{$column} || $type_filter->{$column};
EXPERIMENTAL type_rule argum...
Yuki Kimoto authored on 2011-06-17
1211
            $value = $tf->($value) if $tf;
1212
        }
cleanup
kimoto.yuki@gmail.com authored on 2010-12-21
1213
        
separate DBIx::Custom type_r...
Yuki Kimoto authored on 2011-06-15
1214
        # Bind values
DBIx::Custom::Model type att...
Yuki Kimoto authored on 2011-06-17
1215
        push @$bind, {value => $value, bind_type => $bind_type->{$column}};
removed reconnect method
yuki-kimoto authored on 2010-05-28
1216
        
1217
        # Count up 
1218
        $count->{$column}++;
1219
    }
1220
    
- added EXPERIMENTAL type() ...
Yuki Kimoto authored on 2011-03-21
1221
    return $bind;
removed reconnect method
yuki-kimoto authored on 2010-05-28
1222
}
1223

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
1636
    return $tag;
1637
}
1638

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
1945
=item *
1946

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

            
1949
=item *
1950

            
1951
Connection manager support
1952

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

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

            
1959
=item *
1960

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

            
1963
=item *
1964

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
2167
You can set the following data.
2168

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
2250
Get rows count.
2251

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

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

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

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

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

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

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

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

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

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

            
2280
Execute delete statement.
2281

            
2282
The following opitons are available.
2283

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

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

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

            
2291
=item C<id>
2292

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

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

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

            
2305
The above is same as the followin one.
2306

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

            
2309
=item C<prefix>
2310

            
2311
    prefix => 'some'
2312

            
2313
prefix before table name section.
2314

            
2315
    delete some from book
2316

            
2317
=item C<table>
2318

            
2319
    table => 'book'
2320

            
2321
Table name.
2322

            
2323
=item C<where>
2324

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

            
2327
=back
2328

            
2329
=head2 C<delete_all>
2330

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
2431
=over 4
2432

            
cleanup
Yuki Kimoto authored on 2011-10-20
2433
=item C<append>
2434

            
2435
    append => 'order by name'
2436

            
2437
Append some statement after SQL.
2438

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

            
2441
Specify database bind data type.
2442

            
2443
    bind_type => [image => DBI::SQL_BLOB]
2444
    bind_type => [[qw/image audio/] => DBI::SQL_BLOB]
2445

            
2446
This is used to bind parameter by C<bind_param> of statment handle.
2447

            
2448
    $sth->bind_param($pos, $value, DBI::SQL_BLOB);
2449

            
update pod
Yuki Kimoto authored on 2011-03-13
2450
=item C<filter>
updated pod
Yuki Kimoto authored on 2011-06-09
2451
    
2452
    filter => {
2453
        title  => sub { uc $_[0] }
2454
        author => sub { uc $_[0] }
2455
    }
update pod
Yuki Kimoto authored on 2011-03-13
2456

            
updated pod
Yuki Kimoto authored on 2011-06-09
2457
    # Filter name
2458
    filter => {
2459
        title  => 'upper_case',
2460
        author => 'upper_case'
2461
    }
2462
        
2463
    # At once
2464
    filter => [
2465
        [qw/title author/]  => sub { uc $_[0] }
2466
    ]
2467

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

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

            
2475
    id => 4
2476
    id => [4, 5]
2477

            
2478
ID corresponding to C<primary_key>.
2479
You can delete rows by C<id> and C<primary_key>.
2480

            
2481
    $dbi->execute(
2482
        "select * from book where id1 = :id1 and id2 = :id2",
2483
        {},
fixed pod
Yuki Kimoto authored on 2011-10-20
2484
        primary_key => ['id1', 'id2'],
- removed placeholder count ...
Yuki Kimoto authored on 2011-08-22
2485
        id => [4, 5],
2486
    );
2487

            
2488
The above is same as the followin one.
2489

            
2490
    $dbi->execute(
2491
        "select * from book where id1 = :id1 and id2 = :id2",
2492
        {id1 => 4, id2 => 5}
2493
    );
2494

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

            
2497
    query => 1
2498

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

            
2502
    my $sql = $query->sql;
cleanup
Yuki Kimoto authored on 2011-07-30
2503
    my $sth = $query->sth;
Added execute method's query...
Yuki Kimoto authored on 2011-07-30
2504
    my $columns = $query->columns;
2505
    
2506
If you want to execute SQL fast, you can do the following way.
2507

            
2508
    my $query;
cleanup
Yuki Kimoto authored on 2011-10-21
2509
    for my $row (@$rows) {
Added execute method's query...
Yuki Kimoto authored on 2011-07-30
2510
      $query ||= $dbi->insert($row, table => 'table1', query => 1);
cleanup
Yuki Kimoto authored on 2011-10-20
2511
      $dbi->execute($query, $row);
Added execute method's query...
Yuki Kimoto authored on 2011-07-30
2512
    }
2513

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

            
2517
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
2518
You can do the following way.
cleanup
Yuki Kimoto authored on 2011-07-30
2519
    
2520
    my $query;
2521
    my $sth;
cleanup
Yuki Kimoto authored on 2011-10-21
2522
    for my $row (@$rows) {
cleanup
Yuki Kimoto authored on 2011-07-30
2523
      $query ||= $dbi->insert($row, table => 'book', query => 1);
2524
      $sth ||= $query->sth;
2525
      $sth->execute(map { $row->{$_} } sort keys %$row);
2526
    }
2527

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

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

            
cleanup
Yuki Kimoto authored on 2011-10-20
2534
    primary_key => 'id'
2535
    primary_key => ['id1', 'id2']
2536

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

            
sqlfilter option is renamed ...
Yuki Kimoto authored on 2011-09-16
2539
=item C<after_build_sql> 
added EXPERIMENTAL execute m...
Yuki Kimoto authored on 2011-08-14
2540

            
sqlfilter option is renamed ...
Yuki Kimoto authored on 2011-09-16
2541
You can filter sql after the sql is build.
added EXPERIMENTAL execute m...
Yuki Kimoto authored on 2011-08-14
2542

            
sqlfilter option is renamed ...
Yuki Kimoto authored on 2011-09-16
2543
    after_build_sql => $code_ref
added EXPERIMENTAL execute m...
Yuki Kimoto authored on 2011-08-14
2544

            
sqlfilter option is renamed ...
Yuki Kimoto authored on 2011-09-16
2545
The following one is one example.
2546

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

            
2555
The following SQL is executed.
2556

            
2557
    select count(*) from (select distinct(name) from book) as t1;
added EXPERIMENTAL execute m...
Yuki Kimoto authored on 2011-08-14
2558

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

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

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

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

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

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

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

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

            
2585
    type_rule_off => 1
2586

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

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

            
2591
    type_rule1_off => 1
2592

            
2593
Turn C<into1> type rule off.
2594

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

            
2597
    type_rule2_off => 1
2598

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

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

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

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

            
2607
get column infomation except for one which match C<exclude_table> pattern.
2608

            
2609
    [
2610
        {table => 'book', column => 'title', info => {...}},
2611
        {table => 'author', column => 'name' info => {...}}
2612
    ]
2613

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

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

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

            
2620
    [
2621
        {table => 'book', info => {...}},
2622
        {table => 'author', info => {...}}
2623
    ]
add experimental update_at()...
Yuki Kimoto authored on 2011-02-21
2624

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

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

            
2629
    $dbi->helper(
2630
        update_or_insert => sub {
2631
            my $self = shift;
2632
            
2633
            # Process
2634
        },
2635
        find_or_create   => sub {
2636
            my $self = shift;
2637
            
2638
            # Process
2639
        }
2640
    );
2641

            
2642
Register helper. These helper is called directly from L<DBIx::Custom> object.
2643

            
2644
    $dbi->update_or_insert;
2645
    $dbi->find_or_create;
2646

            
cleanup
yuki-kimoto authored on 2010-10-17
2647
=head2 C<insert>
2648

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

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

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

            
2657
    {date => \"NOW()"}
2658

            
cleanup
Yuki Kimoto authored on 2011-10-20
2659
B<options>
2660

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

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

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

            
updated document
Yuki Kimoto authored on 2011-06-09
2668
    id => 4
2669
    id => [4, 5]
update pod
Yuki Kimoto authored on 2011-03-13
2670

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

            
update pod
Yuki Kimoto authored on 2011-03-13
2674
    $dbi->insert(
updated document
Yuki Kimoto authored on 2011-06-09
2675
        {title => 'Perl', author => 'Ken'}
fixed pod
Yuki Kimoto authored on 2011-10-20
2676
        primary_key => ['id1', 'id2'],
added EXPERIMENTAL execute()...
Yuki Kimoto authored on 2011-06-09
2677
        id => [4, 5],
updated document
Yuki Kimoto authored on 2011-06-09
2678
        table => 'book'
update pod
Yuki Kimoto authored on 2011-03-13
2679
    );
added EXPERIMENTAL execute()...
Yuki Kimoto authored on 2011-06-09
2680

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

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

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

            
2690
    prefix => 'or replace'
2691

            
2692
prefix before table name section
2693

            
2694
    insert or replace into book
2695

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

            
2698
    table => 'book'
2699

            
2700
Table name.
2701

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

            
2704
    timestamp => 1
2705

            
2706
If this value is set to 1,
2707
automatically created timestamp column is set based on
2708
C<timestamp> attribute's C<insert> value.
2709

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

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

            
2714
placeholder wrapped string.
2715

            
2716
If the following statement
2717

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

            
2721
is executed, the following SQL is executed.
2722

            
2723
    insert into book price values ( ? + 5 );
2724

            
update pod
Yuki Kimoto authored on 2011-03-13
2725
=back
2726

            
2727
=over 4
2728

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

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

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

            
update pod
Yuki Kimoto authored on 2011-03-13
2736
    lib / MyModel.pm
2737
        / MyModel / book.pm
2738
                  / company.pm
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
2739

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

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

            
2744
    package MyModel;
updated pod
Yuki Kimoto authored on 2011-06-21
2745
    use DBIx::Custom::Model -base;
update pod
Yuki Kimoto authored on 2011-03-13
2746
    
2747
    1;
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
2748

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

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

            
update pod
Yuki Kimoto authored on 2011-03-13
2753
    package MyModel::book;
updated pod
Yuki Kimoto authored on 2011-06-21
2754
    use MyModel -base;
update pod
Yuki Kimoto authored on 2011-03-13
2755
    
2756
    1;
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
2757

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

            
update pod
Yuki Kimoto authored on 2011-03-13
2760
    package MyModel::company;
updated pod
Yuki Kimoto authored on 2011-06-21
2761
    use MyModel -base;
update pod
Yuki Kimoto authored on 2011-03-13
2762
    
2763
    1;
2764
    
updated pod
Yuki Kimoto authored on 2011-06-21
2765
MyModel::book and MyModel::company is included by C<include_model>.
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
2766

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

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

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

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

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

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

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

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

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

            
2792
    my $like_value = $dbi->like_value
2793

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

            
2796
    sub { "%$_[0]%" }
2797

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

            
2800
    my $mapper = $dbi->mapper(param => $param);
2801

            
2802
Create a new L<DBIx::Custom::Mapper> object.
2803

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

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

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

            
2810
    {key1 => [1, 1], key2 => 2}
2811

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

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

            
2816
    my $model = $dbi->model('book');
2817

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

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

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

            
2825
Create column clause for myself. The follwoing column clause is created.
2826

            
2827
    book.author as author,
2828
    book.title as title
2829

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

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

            
2839
Create a new L<DBIx::Custom> object.
2840

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

            
2843
    my $not_exists = $dbi->not_exists;
2844

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

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

            
2850
    my $order = $dbi->order;
2851

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

            
cleanup
yuki-kimoto authored on 2010-10-17
2854
=head2 C<register_filter>
2855

            
update pod
Yuki Kimoto authored on 2011-03-13
2856
    $dbi->register_filter(
2857
        # Time::Piece object to database DATE format
2858
        tp_to_date => sub {
2859
            my $tp = shift;
2860
            return $tp->strftime('%Y-%m-%d');
2861
        },
2862
        # database DATE format to Time::Piece object
2863
        date_to_tp => sub {
2864
           my $date = shift;
2865
           return Time::Piece->strptime($date, '%Y-%m-%d');
2866
        }
2867
    );
cleanup
yuki-kimoto authored on 2010-10-17
2868
    
update pod
Yuki Kimoto authored on 2011-03-13
2869
Register filters, used by C<filter> option of many methods.
cleanup
yuki-kimoto authored on 2010-10-17
2870

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

            
select method column option ...
Yuki Kimoto authored on 2011-02-22
2873
    my $result = $dbi->select(
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
2874
        table  => 'book',
2875
        column => ['author', 'title'],
2876
        where  => {author => 'Ken'},
select method column option ...
Yuki Kimoto authored on 2011-02-22
2877
    );
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
2878
    
updated document
Yuki Kimoto authored on 2011-06-09
2879
Execute select statement.
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
2880

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

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

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

            
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
2888
=item C<column>
2889
    
updated document
Yuki Kimoto authored on 2011-06-09
2890
    column => 'author'
2891
    column => ['author', 'title']
2892

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

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

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

            
updated document
Yuki Kimoto authored on 2011-06-09
2901
    column => [
updated pod
Yuki Kimoto authored on 2011-06-07
2902
        {book => [qw/author title/]},
2903
        {person => [qw/name age/]}
updated document
Yuki Kimoto authored on 2011-06-09
2904
    ]
updated pod
Yuki Kimoto authored on 2011-06-07
2905

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

            
2908
    book.author as "book.author",
2909
    book.title as "book.title",
2910
    person.name as "person.name",
2911
    person.age as "person.age"
2912

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

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

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

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

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

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

            
2928
=item C<id>
2929

            
2930
    id => 4
2931
    id => [4, 5]
2932

            
2933
ID corresponding to C<primary_key>.
2934
You can select rows by C<id> and C<primary_key>.
2935

            
2936
    $dbi->select(
fixed pod
Yuki Kimoto authored on 2011-10-20
2937
        primary_key => ['id1', 'id2'],
updated document
Yuki Kimoto authored on 2011-06-09
2938
        id => [4, 5],
2939
        table => 'book'
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
2940
    );
2941

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

            
updated pod
Yuki Kimoto authored on 2011-04-25
2944
    $dbi->select(
updated document
Yuki Kimoto authored on 2011-06-09
2945
        where => {id1 => 4, id2 => 5},
2946
        table => 'book'
where can recieve array refr...
Yuki Kimoto authored on 2011-03-24
2947
    );
2948
    
cleanup
Yuki Kimoto authored on 2011-10-20
2949
=item C<param>
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
2950

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

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

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

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

            
2963
    prefix => 'SQL_CALC_FOUND_ROWS'
2964

            
2965
Prefix of column cluase
2966

            
2967
    select SQL_CALC_FOUND_ROWS title, author from book;
2968

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

            
2971
    join => [
2972
        'left outer join company on book.company_id = company_id',
2973
        'left outer join location on company.location_id = location.id'
2974
    ]
2975
        
2976
Join clause. If column cluase or where clause contain table name like "company.name",
2977
join clausees needed when SQL is created is used automatically.
update pod
Yuki Kimoto authored on 2011-03-12
2978

            
2979
    $dbi->select(
2980
        table => 'book',
cleanup
Yuki Kimoto authored on 2011-06-13
2981
        column => ['company.location_id as location_id'],
update pod
Yuki Kimoto authored on 2011-03-12
2982
        where => {'company.name' => 'Orange'},
2983
        join => [
2984
            'left outer join company on book.company_id = company.id',
2985
            'left outer join location on company.location_id = location.id'
2986
        ]
2987
    );
2988

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

            
cleanup
Yuki Kimoto authored on 2011-06-13
2992
    select company.location_id as location_id
update pod
Yuki Kimoto authored on 2011-03-12
2993
    from book
2994
      left outer join company on book.company_id = company.id
cleanup
Yuki Kimoto authored on 2011-06-13
2995
    where company.name = ?;
update pod
Yuki Kimoto authored on 2011-03-12
2996

            
added join new syntax
Yuki Kimoto authored on 2011-07-28
2997
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
2998
the join clause correctly.
added join new syntax
Yuki Kimoto authored on 2011-07-28
2999

            
3000
    $dbi->select(
3001
        table => 'book',
3002
        column => ['company.location_id as location_id'],
3003
        where => {'company.name' => 'Orange'},
3004
        join => [
3005
            {
3006
                clause => 'left outer join location on company.location_id = location.id',
3007
                table => ['company', 'location']
3008
            }
3009
        ]
3010
    );
3011

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

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

            
updated document
Yuki Kimoto authored on 2011-06-09
3016
Table name.
updated pod
Yuki Kimoto authored on 2011-06-08
3017

            
updated document
Yuki Kimoto authored on 2011-06-09
3018
=item C<where>
3019
    
3020
    # Hash refrence
3021
    where => {author => 'Ken', 'title' => 'Perl'}
3022
    
3023
    # DBIx::Custom::Where object
3024
    where => $dbi->where(
3025
        clause => ['and', 'author = :author', 'title like :title'],
3026
        param  => {author => 'Ken', title => '%Perl%'}
3027
    );
updated pod
Yuki Kimoto authored on 2011-06-21
3028
    
3029
    # Array reference 1 (array reference, hash referenc). same as above
3030
    where => [
3031
        ['and', 'author = :author', 'title like :title'],
3032
        {author => 'Ken', title => '%Perl%'}
3033
    ];    
3034
    
3035
    # Array reference 2 (String, hash reference)
3036
    where => [
3037
        'title like :title',
3038
        {title => '%Perl%'}
3039
    ]
3040
    
3041
    # String
3042
    where => 'title is null'
update pod
Yuki Kimoto authored on 2011-03-12
3043

            
cleanup
Yuki Kimoto authored on 2011-10-20
3044
Where clause. See L<DBIx::Custom::Where>.
updated document
Yuki Kimoto authored on 2011-06-09
3045
    
update pod
Yuki Kimoto authored on 2011-03-12
3046
=back
cleanup
Yuki Kimoto authored on 2011-03-08
3047

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

            
3050
    $dbi->setup_model;
3051

            
3052
Setup all model objects.
3053
C<columns> of model object is automatically set, parsing database information.
3054

            
3055
=head2 C<type_rule>
3056

            
3057
    $dbi->type_rule(
3058
        into1 => {
3059
            date => sub { ... },
3060
            datetime => sub { ... }
3061
        },
3062
        into2 => {
3063
            date => sub { ... },
3064
            datetime => sub { ... }
3065
        },
3066
        from1 => {
3067
            # DATE
3068
            9 => sub { ... },
3069
            # DATETIME or TIMESTAMP
3070
            11 => sub { ... },
3071
        }
3072
        from2 => {
3073
            # DATE
3074
            9 => sub { ... },
3075
            # DATETIME or TIMESTAMP
3076
            11 => sub { ... },
3077
        }
3078
    );
3079

            
3080
Filtering rule when data is send into and get from database.
3081
This has a little complex problem.
3082

            
3083
In C<into1> and C<into2> you can specify
3084
type name as same as type name defined
3085
by create table, such as C<DATETIME> or C<DATE>.
3086

            
3087
Note that type name and data type don't contain upper case.
3088
If these contain upper case charactor, you convert it to lower case.
3089

            
3090
C<into2> is executed after C<into1>.
3091

            
3092
Type rule of C<into1> and C<into2> is enabled on the following
3093
column name.
3094

            
3095
=over 4
3096

            
3097
=item 1. column name
3098

            
3099
    issue_date
3100
    issue_datetime
3101

            
3102
This need C<table> option in each method.
3103

            
3104
=item 2. table name and column name, separator is dot
3105

            
3106
    book.issue_date
3107
    book.issue_datetime
3108

            
3109
=back
3110

            
3111
You get all type name used in database by C<available_typename>.
3112

            
3113
    print $dbi->available_typename;
3114

            
3115
In C<from1> and C<from2> you specify data type, not type name.
3116
C<from2> is executed after C<from1>.
3117
You get all data type by C<available_datatype>.
3118

            
3119
    print $dbi->available_datatype;
3120

            
3121
You can also specify multiple types at once.
3122

            
3123
    $dbi->type_rule(
3124
        into1 => [
3125
            [qw/DATE DATETIME/] => sub { ... },
3126
        ],
3127
    );
3128

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

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

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

            
3135
If you want to set constant value to row data, use scalar reference
3136
as parameter value.
3137

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

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

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

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

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

            
updated document
Yuki Kimoto authored on 2011-06-09
3149
    id => 4
3150
    id => [4, 5]
- insert, insert_at, update,...
Yuki Kimoto authored on 2011-06-08
3151

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

            
DEPRECATED select() param op...
Yuki Kimoto authored on 2011-04-25
3155
    $dbi->update(
updated document
Yuki Kimoto authored on 2011-06-09
3156
        {title => 'Perl', author => 'Ken'}
fixed pod
Yuki Kimoto authored on 2011-10-20
3157
        primary_key => ['id1', 'id2'],
updated document
Yuki Kimoto authored on 2011-06-09
3158
        id => [4, 5],
3159
        table => 'book'
where can recieve array refr...
Yuki Kimoto authored on 2011-03-24
3160
    );
update pod
Yuki Kimoto authored on 2011-03-13
3161

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

            
updated document
Yuki Kimoto authored on 2011-06-09
3164
    $dbi->update(
3165
        {title => 'Perl', author => 'Ken'}
3166
        where => {id1 => 4, id2 => 5},
3167
        table => 'book'
3168
    );
update pod
Yuki Kimoto authored on 2011-03-13
3169

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

            
3172
    prefix => 'or replace'
3173

            
3174
prefix before table name section
3175

            
3176
    update or replace book
3177

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

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

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

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

            
3186
    timestamp => 1
3187

            
3188
If this value is set to 1,
3189
automatically updated timestamp column is set based on
3190
C<timestamp> attribute's C<update> value.
3191

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

            
3194
Same as C<select> method's C<where> option.
3195

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

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

            
3200
placeholder wrapped string.
3201

            
3202
If the following statement
3203

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

            
3207
is executed, the following SQL is executed.
3208

            
3209
    update book set price =  ? + 5;
3210

            
updated pod
Yuki Kimoto authored on 2011-06-08
3211
=back
update pod
Yuki Kimoto authored on 2011-03-13
3212

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

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

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

            
- removed DEPRECATED status ...
Yuki Kimoto authored on 2011-10-11
3220
=head2 C<update_or_insert EXPERIMENTAL>
3221
    
3222
    # Where
3223
    $dbi->update_or_insert(
3224
        {id => 1, title => 'Perl'},
3225
        table => 'book',
3226
        where => {id => 1},
3227
        select_option => {append => 'for update'}
3228
    );
3229
    
3230
    # ID
3231
    $dbi->update_or_insert(
3232
        {title => 'Perl'},
3233
        table => 'book',
3234
        id => 1,
3235
        primary_key => 'id',
3236
        select_option => {append => 'for update'}
3237
    );
3238
    
3239
Update or insert.
3240

            
3241
In both examples, the following SQL is executed.
3242

            
3243
    # In case insert
3244
    insert into book (id, title) values (?, ?)
3245
    
3246
    # In case update
3247
    update book set (id = ?, title = ?) where book.id = ?
3248

            
3249
The following opitons are available adding to C<update> option.
3250

            
3251
=over 4
3252

            
3253
=item C<select_option>
3254

            
3255
    select_option => {append => 'for update'}
3256

            
3257
select method option,
3258
select method is used to check the row is already exists.
3259

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

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

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

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

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

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

            
3280
    $dbi->show_datatype($table);
3281

            
3282
Show data type of the columns of specified table.
3283

            
3284
    book
3285
    title: 5
3286
    issue_date: 91
3287

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

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

            
3292
    $dbi->show_tables;
3293

            
3294
Show tables.
3295

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

            
3298
    $dbi->show_typename($table);
3299

            
3300
Show type name of the columns of specified table.
3301

            
3302
    book
3303
    title: varchar
3304
    issue_date: date
3305

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

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

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

            
3312
Create values clause.
3313

            
3314
    (title, author) values (title = :title, age = :age);
3315

            
3316
You can use this in insert statement.
3317

            
3318
    my $insert_sql = "insert into book $values_clause";
3319

            
3320
=head2 C<where>
3321

            
3322
    my $where = $dbi->where(
3323
        clause => ['and', 'title = :title', 'author = :author'],
3324
        param => {title => 'Perl', author => 'Ken'}
3325
    );
3326

            
3327
Create a new L<DBIx::Custom::Where> object.
3328

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

            
3331
=head2 C<DBIX_CUSTOM_DEBUG>
3332

            
3333
If environment variable C<DBIX_CUSTOM_DEBUG> is set to true,
3334
executed SQL and bind values are printed to STDERR.
3335

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

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

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

            
3342
L<DBIx::Custom>
3343

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

            
3389
L<DBIx::Custom::Model>
3390

            
DBIx::Custom::Query filters ...
Yuki Kimoto authored on 2011-07-30
3391
    # Attribute methods
- method method of DBIx::Cus...
Yuki Kimoto authored on 2011-10-10
3392
    method # will be removed at 2017/1/1
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3393
    filter # will be removed at 2017/1/1
3394
    name # will be removed at 2017/1/1
3395
    type # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3396

            
3397
L<DBIx::Custom::Query>
3398
    
DBIx::Custom::Query filters ...
Yuki Kimoto authored on 2011-07-30
3399
    # Attribute methods
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3400
    default_filter # will be removed at 2017/1/1
DBIx::Custom::Query filters ...
Yuki Kimoto authored on 2011-07-30
3401
    table # will be removed at 2017/1/1
3402
    filters # will be removed at 2017/1/1
3403
    
3404
    # Methods
3405
    filter # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3406

            
3407
L<DBIx::Custom::QueryBuilder>
3408
    
DBIx::Custom::Query filters ...
Yuki Kimoto authored on 2011-07-30
3409
    # Attribute methods
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3410
    tags # will be removed at 2017/1/1
3411
    tag_processors # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3412
    
DBIx::Custom::Query filters ...
Yuki Kimoto authored on 2011-07-30
3413
    # Methods
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3414
    register_tag # will be removed at 2017/1/1
3415
    register_tag_processor # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3416
    
3417
    # Others
3418
    build_query("select * from {= title}"); # tag parsing functionality
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3419
                                            # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3420

            
3421
L<DBIx::Custom::Result>
3422
    
DBIx::Custom::Query filters ...
Yuki Kimoto authored on 2011-07-30
3423
    # Attribute methods
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3424
    filter_check # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3425
    
3426
    # Methods
added EXPERIMENTAL each_tabl...
Yuki Kimoto authored on 2011-07-11
3427
    end_filter # will be removed at 2017/1/1
3428
    remove_end_filter # will be removed at 2017/1/1
3429
    remove_filter # will be removed at 2017/1/1
3430
    default_filter # will be removed at 2017/1/1
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3431

            
3432
L<DBIx::Custom::Tag>
3433

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

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

            
3438
If a functionality is DEPRECATED, you can know it by DEPRECATED warnings
3439
except for attribute method.
3440
You can check all DEPRECATED functionalities by document.
3441
DEPRECATED functionality is removed after five years,
3442
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
3443
I extend one year each time he tell me it.
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
3444

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

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

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

            
3451
C<< <kimoto.yuki at gmail.com> >>
3452

            
3453
L<http://github.com/yuki-kimoto/DBIx-Custom>
3454

            
removed reconnect method
yuki-kimoto authored on 2010-05-28
3455
=head1 AUTHOR
3456

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

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

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

            
3463
This program is free software; you can redistribute it and/or modify it
3464
under the same terms as Perl itself.
3465

            
3466
=cut