DBIx-Custom / lib / DBIx / Custom.pm /
Newer Older
3467 lines | 89.558kb
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
micro optimization
Yuki Kimoto authored on 2011-10-22
1208
        my $tf1 = $self->{"_into1"}->{dot}->{$column}
1209
          || $type_filters->{1}->{$column};
1210
        $value = $tf1->($value) if $tf1;
1211
        my $tf2 = $self->{"_into2"}->{dot}->{$column}
1212
          || $type_filters->{2}->{$column};
1213
        $value = $tf2->($value) if $tf2;
1214
       
separate DBIx::Custom type_r...
Yuki Kimoto authored on 2011-06-15
1215
        # Bind values
DBIx::Custom::Model type att...
Yuki Kimoto authored on 2011-06-17
1216
        push @$bind, {value => $value, bind_type => $bind_type->{$column}};
removed reconnect method
yuki-kimoto authored on 2010-05-28
1217
        
1218
        # Count up 
1219
        $count->{$column}++;
1220
    }
1221
    
- added EXPERIMENTAL type() ...
Yuki Kimoto authored on 2011-03-21
1222
    return $bind;
removed reconnect method
yuki-kimoto authored on 2010-05-28
1223
}
1224

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
1637
    return $tag;
1638
}
1639

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
1946
=item *
1947

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

            
1950
=item *
1951

            
1952
Connection manager support
1953

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

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

            
1960
=item *
1961

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

            
1964
=item *
1965

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
2168
You can set the following data.
2169

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
2251
Get rows count.
2252

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

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

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

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

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

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

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

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

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

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

            
2281
Execute delete statement.
2282

            
2283
The following opitons are available.
2284

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

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

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

            
2292
=item C<id>
2293

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

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

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

            
2306
The above is same as the followin one.
2307

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

            
2310
=item C<prefix>
2311

            
2312
    prefix => 'some'
2313

            
2314
prefix before table name section.
2315

            
2316
    delete some from book
2317

            
2318
=item C<table>
2319

            
2320
    table => 'book'
2321

            
2322
Table name.
2323

            
2324
=item C<where>
2325

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

            
2328
=back
2329

            
2330
=head2 C<delete_all>
2331

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
2432
=over 4
2433

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

            
2436
    append => 'order by name'
2437

            
2438
Append some statement after SQL.
2439

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

            
2442
Specify database bind data type.
2443

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

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

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

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

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

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

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

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

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

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

            
2489
The above is same as the followin one.
2490

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

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

            
2498
    query => 1
2499

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
2556
The following SQL is executed.
2557

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

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

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

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

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

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

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

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

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

            
2586
    type_rule_off => 1
2587

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

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

            
2592
    type_rule1_off => 1
2593

            
2594
Turn C<into1> type rule off.
2595

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

            
2598
    type_rule2_off => 1
2599

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
2691
    prefix => 'or replace'
2692

            
2693
prefix before table name section
2694

            
2695
    insert or replace into book
2696

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

            
2699
    table => 'book'
2700

            
2701
Table name.
2702

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

            
2705
    timestamp => 1
2706

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

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

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

            
2715
placeholder wrapped string.
2716

            
2717
If the following statement
2718

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

            
2722
is executed, the following SQL is executed.
2723

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

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

            
2728
=over 4
2729

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
2793
    my $like_value = $dbi->like_value
2794

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
2929
=item C<id>
2930

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

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

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

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

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

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

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

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

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

            
2964
    prefix => 'SQL_CALC_FOUND_ROWS'
2965

            
2966
Prefix of column cluase
2967

            
2968
    select SQL_CALC_FOUND_ROWS title, author from book;
2969

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

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

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

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

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

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

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

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

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

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

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

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

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

            
3051
    $dbi->setup_model;
3052

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

            
3056
=head2 C<type_rule>
3057

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

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

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

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

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

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

            
3096
=over 4
3097

            
3098
=item 1. column name
3099

            
3100
    issue_date
3101
    issue_datetime
3102

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

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

            
3107
    book.issue_date
3108
    book.issue_datetime
3109

            
3110
=back
3111

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

            
3114
    print $dbi->available_typename;
3115

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

            
3120
    print $dbi->available_datatype;
3121

            
3122
You can also specify multiple types at once.
3123

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
3173
    prefix => 'or replace'
3174

            
3175
prefix before table name section
3176

            
3177
    update or replace book
3178

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

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

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

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

            
3187
    timestamp => 1
3188

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

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

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

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

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

            
3201
placeholder wrapped string.
3202

            
3203
If the following statement
3204

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

            
3208
is executed, the following SQL is executed.
3209

            
3210
    update book set price =  ? + 5;
3211

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

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

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

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

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

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

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

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

            
3252
=over 4
3253

            
3254
=item C<select_option>
3255

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

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

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

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

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

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

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

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

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

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

            
3285
    book
3286
    title: 5
3287
    issue_date: 91
3288

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

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

            
3293
    $dbi->show_tables;
3294

            
3295
Show tables.
3296

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

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

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

            
3303
    book
3304
    title: varchar
3305
    issue_date: date
3306

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

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

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

            
3313
Create values clause.
3314

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

            
3317
You can use this in insert statement.
3318

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

            
3321
=head2 C<where>
3322

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

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

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

            
3332
=head2 C<DBIX_CUSTOM_DEBUG>
3333

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

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

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

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

            
3343
L<DBIx::Custom>
3344

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
3467
=cut