Merge 'trunk' into 'mssql_top_fixes'
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI.pm
1 package DBIx::Class::Storage::DBI;
2 # -*- mode: cperl; cperl-indent-level: 2 -*-
3
4 use base 'DBIx::Class::Storage';
5
6 use strict;
7 use warnings;
8 use Carp::Clan qw/^DBIx::Class/;
9 use DBI;
10 use DBIx::Class::Storage::DBI::Cursor;
11 use DBIx::Class::Storage::Statistics;
12 use Scalar::Util();
13 use List::Util();
14
15 __PACKAGE__->mk_group_accessors('simple' =>
16   qw/_connect_info _dbi_connect_info _dbh _sql_maker _sql_maker_opts
17      _conn_pid _conn_tid transaction_depth _dbh_autocommit savepoints/
18 );
19
20 # the values for these accessors are picked out (and deleted) from
21 # the attribute hashref passed to connect_info
22 my @storage_options = qw/
23   on_connect_call on_disconnect_call on_connect_do on_disconnect_do
24   disable_sth_caching unsafe auto_savepoint
25 /;
26 __PACKAGE__->mk_group_accessors('simple' => @storage_options);
27
28
29 # default cursor class, overridable in connect_info attributes
30 __PACKAGE__->cursor_class('DBIx::Class::Storage::DBI::Cursor');
31
32 __PACKAGE__->mk_group_accessors('inherited' => qw/sql_maker_class/);
33 __PACKAGE__->sql_maker_class('DBIx::Class::SQLAHacks');
34
35
36 =head1 NAME
37
38 DBIx::Class::Storage::DBI - DBI storage handler
39
40 =head1 SYNOPSIS
41
42   my $schema = MySchema->connect('dbi:SQLite:my.db');
43
44   $schema->storage->debug(1);
45   $schema->dbh_do("DROP TABLE authors");
46
47   $schema->resultset('Book')->search({
48      written_on => $schema->storage->datetime_parser(DateTime->now)
49   });
50
51 =head1 DESCRIPTION
52
53 This class represents the connection to an RDBMS via L<DBI>.  See
54 L<DBIx::Class::Storage> for general information.  This pod only
55 documents DBI-specific methods and behaviors.
56
57 =head1 METHODS
58
59 =cut
60
61 sub new {
62   my $new = shift->next::method(@_);
63
64   $new->transaction_depth(0);
65   $new->_sql_maker_opts({});
66   $new->{savepoints} = [];
67   $new->{_in_dbh_do} = 0;
68   $new->{_dbh_gen} = 0;
69
70   $new;
71 }
72
73 =head2 connect_info
74
75 This method is normally called by L<DBIx::Class::Schema/connection>, which
76 encapsulates its argument list in an arrayref before passing them here.
77
78 The argument list may contain:
79
80 =over
81
82 =item *
83
84 The same 4-element argument set one would normally pass to
85 L<DBI/connect>, optionally followed by
86 L<extra attributes|/DBIx::Class specific connection attributes>
87 recognized by DBIx::Class:
88
89   $connect_info_args = [ $dsn, $user, $password, \%dbi_attributes?, \%extra_attributes? ];
90
91 =item *
92
93 A single code reference which returns a connected
94 L<DBI database handle|DBI/connect> optionally followed by
95 L<extra attributes|/DBIx::Class specific connection attributes> recognized
96 by DBIx::Class:
97
98   $connect_info_args = [ sub { DBI->connect (...) }, \%extra_attributes? ];
99
100 =item *
101
102 A single hashref with all the attributes and the dsn/user/password
103 mixed together:
104
105   $connect_info_args = [{
106     dsn => $dsn,
107     user => $user,
108     password => $pass,
109     %dbi_attributes,
110     %extra_attributes,
111   }];
112
113 This is particularly useful for L<Catalyst> based applications, allowing the
114 following config (L<Config::General> style):
115
116   <Model::DB>
117     schema_class   App::DB
118     <connect_info>
119       dsn          dbi:mysql:database=test
120       user         testuser
121       password     TestPass
122       AutoCommit   1
123     </connect_info>
124   </Model::DB>
125
126 =back
127
128 Please note that the L<DBI> docs recommend that you always explicitly
129 set C<AutoCommit> to either I<0> or I<1>.  L<DBIx::Class> further
130 recommends that it be set to I<1>, and that you perform transactions
131 via our L<DBIx::Class::Schema/txn_do> method.  L<DBIx::Class> will set it
132 to I<1> if you do not do explicitly set it to zero.  This is the default
133 for most DBDs. See L</DBIx::Class and AutoCommit> for details.
134
135 =head3 DBIx::Class specific connection attributes
136
137 In addition to the standard L<DBI|DBI/ATTRIBUTES_COMMON_TO_ALL_HANDLES>
138 L<connection|DBI/Database_Handle_Attributes> attributes, DBIx::Class recognizes
139 the following connection options. These options can be mixed in with your other
140 L<DBI> connection attributes, or placed in a seperate hashref
141 (C<\%extra_attributes>) as shown above.
142
143 Every time C<connect_info> is invoked, any previous settings for
144 these options will be cleared before setting the new ones, regardless of
145 whether any options are specified in the new C<connect_info>.
146
147
148 =over
149
150 =item on_connect_do
151
152 Specifies things to do immediately after connecting or re-connecting to
153 the database.  Its value may contain:
154
155 =over
156
157 =item a scalar
158
159 This contains one SQL statement to execute.
160
161 =item an array reference
162
163 This contains SQL statements to execute in order.  Each element contains
164 a string or a code reference that returns a string.
165
166 =item a code reference
167
168 This contains some code to execute.  Unlike code references within an
169 array reference, its return value is ignored.
170
171 =back
172
173 =item on_disconnect_do
174
175 Takes arguments in the same form as L</on_connect_do> and executes them
176 immediately before disconnecting from the database.
177
178 Note, this only runs if you explicitly call L</disconnect> on the
179 storage object.
180
181 =item on_connect_call
182
183 A more generalized form of L</on_connect_do> that calls the specified
184 C<connect_call_METHOD> methods in your storage driver.
185
186   on_connect_do => 'select 1'
187
188 is equivalent to:
189
190   on_connect_call => [ [ do_sql => 'select 1' ] ]
191
192 Its values may contain:
193
194 =over
195
196 =item a scalar
197
198 Will call the C<connect_call_METHOD> method.
199
200 =item a code reference
201
202 Will execute C<< $code->($storage) >>
203
204 =item an array reference
205
206 Each value can be a method name or code reference.
207
208 =item an array of arrays
209
210 For each array, the first item is taken to be the C<connect_call_> method name
211 or code reference, and the rest are parameters to it.
212
213 =back
214
215 Some predefined storage methods you may use:
216
217 =over
218
219 =item do_sql
220
221 Executes a SQL string or a code reference that returns a SQL string. This is
222 what L</on_connect_do> and L</on_disconnect_do> use.
223
224 It can take:
225
226 =over
227
228 =item a scalar
229
230 Will execute the scalar as SQL.
231
232 =item an arrayref
233
234 Taken to be arguments to L<DBI/do>, the SQL string optionally followed by the
235 attributes hashref and bind values.
236
237 =item a code reference
238
239 Will execute C<< $code->($storage) >> and execute the return array refs as
240 above.
241
242 =back
243
244 =item datetime_setup
245
246 Execute any statements necessary to initialize the database session to return
247 and accept datetime/timestamp values used with
248 L<DBIx::Class::InflateColumn::DateTime>.
249
250 Only necessary for some databases, see your specific storage driver for
251 implementation details.
252
253 =back
254
255 =item on_disconnect_call
256
257 Takes arguments in the same form as L</on_connect_call> and executes them
258 immediately before disconnecting from the database.
259
260 Calls the C<disconnect_call_METHOD> methods as opposed to the
261 C<connect_call_METHOD> methods called by L</on_connect_call>.
262
263 Note, this only runs if you explicitly call L</disconnect> on the
264 storage object.
265
266 =item disable_sth_caching
267
268 If set to a true value, this option will disable the caching of
269 statement handles via L<DBI/prepare_cached>.
270
271 =item limit_dialect
272
273 Sets the limit dialect. This is useful for JDBC-bridge among others
274 where the remote SQL-dialect cannot be determined by the name of the
275 driver alone. See also L<SQL::Abstract::Limit>.
276
277 =item quote_char
278
279 Specifies what characters to use to quote table and column names. If
280 you use this you will want to specify L</name_sep> as well.
281
282 C<quote_char> expects either a single character, in which case is it
283 is placed on either side of the table/column name, or an arrayref of length
284 2 in which case the table/column name is placed between the elements.
285
286 For example under MySQL you should use C<< quote_char => '`' >>, and for
287 SQL Server you should use C<< quote_char => [qw/[ ]/] >>.
288
289 =item name_sep
290
291 This only needs to be used in conjunction with C<quote_char>, and is used to
292 specify the charecter that seperates elements (schemas, tables, columns) from
293 each other. In most cases this is simply a C<.>.
294
295 The consequences of not supplying this value is that L<SQL::Abstract>
296 will assume DBIx::Class' uses of aliases to be complete column
297 names. The output will look like I<"me.name"> when it should actually
298 be I<"me"."name">.
299
300 =item unsafe
301
302 This Storage driver normally installs its own C<HandleError>, sets
303 C<RaiseError> and C<ShowErrorStatement> on, and sets C<PrintError> off on
304 all database handles, including those supplied by a coderef.  It does this
305 so that it can have consistent and useful error behavior.
306
307 If you set this option to a true value, Storage will not do its usual
308 modifications to the database handle's attributes, and instead relies on
309 the settings in your connect_info DBI options (or the values you set in
310 your connection coderef, in the case that you are connecting via coderef).
311
312 Note that your custom settings can cause Storage to malfunction,
313 especially if you set a C<HandleError> handler that suppresses exceptions
314 and/or disable C<RaiseError>.
315
316 =item auto_savepoint
317
318 If this option is true, L<DBIx::Class> will use savepoints when nesting
319 transactions, making it possible to recover from failure in the inner
320 transaction without having to abort all outer transactions.
321
322 =item cursor_class
323
324 Use this argument to supply a cursor class other than the default
325 L<DBIx::Class::Storage::DBI::Cursor>.
326
327 =back
328
329 Some real-life examples of arguments to L</connect_info> and
330 L<DBIx::Class::Schema/connect>
331
332   # Simple SQLite connection
333   ->connect_info([ 'dbi:SQLite:./foo.db' ]);
334
335   # Connect via subref
336   ->connect_info([ sub { DBI->connect(...) } ]);
337
338   # A bit more complicated
339   ->connect_info(
340     [
341       'dbi:Pg:dbname=foo',
342       'postgres',
343       'my_pg_password',
344       { AutoCommit => 1 },
345       { quote_char => q{"}, name_sep => q{.} },
346     ]
347   );
348
349   # Equivalent to the previous example
350   ->connect_info(
351     [
352       'dbi:Pg:dbname=foo',
353       'postgres',
354       'my_pg_password',
355       { AutoCommit => 1, quote_char => q{"}, name_sep => q{.} },
356     ]
357   );
358
359   # Same, but with hashref as argument
360   # See parse_connect_info for explanation
361   ->connect_info(
362     [{
363       dsn         => 'dbi:Pg:dbname=foo',
364       user        => 'postgres',
365       password    => 'my_pg_password',
366       AutoCommit  => 1,
367       quote_char  => q{"},
368       name_sep    => q{.},
369     }]
370   );
371
372   # Subref + DBIx::Class-specific connection options
373   ->connect_info(
374     [
375       sub { DBI->connect(...) },
376       {
377           quote_char => q{`},
378           name_sep => q{@},
379           on_connect_do => ['SET search_path TO myschema,otherschema,public'],
380           disable_sth_caching => 1,
381       },
382     ]
383   );
384
385
386
387 =cut
388
389 sub connect_info {
390   my ($self, $info_arg) = @_;
391
392   return $self->_connect_info if !$info_arg;
393
394   my @args = @$info_arg;  # take a shallow copy for further mutilation
395   $self->_connect_info([@args]); # copy for _connect_info
396
397
398   # combine/pre-parse arguments depending on invocation style
399
400   my %attrs;
401   if (ref $args[0] eq 'CODE') {     # coderef with optional \%extra_attributes
402     %attrs = %{ $args[1] || {} };
403     @args = $args[0];
404   }
405   elsif (ref $args[0] eq 'HASH') { # single hashref (i.e. Catalyst config)
406     %attrs = %{$args[0]};
407     @args = ();
408     for (qw/password user dsn/) {
409       unshift @args, delete $attrs{$_};
410     }
411   }
412   else {                # otherwise assume dsn/user/password + \%attrs + \%extra_attrs
413     %attrs = (
414       % { $args[3] || {} },
415       % { $args[4] || {} },
416     );
417     @args = @args[0,1,2];
418   }
419
420   # Kill sql_maker/_sql_maker_opts, so we get a fresh one with only
421   #  the new set of options
422   $self->_sql_maker(undef);
423   $self->_sql_maker_opts({});
424
425   if(keys %attrs) {
426     for my $storage_opt (@storage_options, 'cursor_class') {    # @storage_options is declared at the top of the module
427       if(my $value = delete $attrs{$storage_opt}) {
428         $self->$storage_opt($value);
429       }
430     }
431     for my $sql_maker_opt (qw/limit_dialect quote_char name_sep/) {
432       if(my $opt_val = delete $attrs{$sql_maker_opt}) {
433         $self->_sql_maker_opts->{$sql_maker_opt} = $opt_val;
434       }
435     }
436   }
437
438   %attrs = () if (ref $args[0] eq 'CODE');  # _connect() never looks past $args[0] in this case
439
440   $self->_dbi_connect_info([@args, keys %attrs ? \%attrs : ()]);
441   $self->_connect_info;
442 }
443
444 =head2 on_connect_do
445
446 This method is deprecated in favour of setting via L</connect_info>.
447
448 =cut
449
450 =head2 on_disconnect_do
451
452 This method is deprecated in favour of setting via L</connect_info>.
453
454 =cut
455
456 sub _parse_connect_do {
457   my ($self, $type) = @_;
458
459   my $val = $self->$type;
460   return () if not defined $val;
461
462   my @res;
463
464   if (not ref($val)) {
465     push @res, [ 'do_sql', $val ];
466   } elsif (ref($val) eq 'CODE') {
467     push @res, $val;
468   } elsif (ref($val) eq 'ARRAY') {
469     push @res, map { [ 'do_sql', $_ ] } @$val;
470   } else {
471     $self->throw_exception("Invalid type for $type: ".ref($val));
472   }
473
474   return \@res;
475 }
476
477 =head2 dbh_do
478
479 Arguments: ($subref | $method_name), @extra_coderef_args?
480
481 Execute the given $subref or $method_name using the new exception-based
482 connection management.
483
484 The first two arguments will be the storage object that C<dbh_do> was called
485 on and a database handle to use.  Any additional arguments will be passed
486 verbatim to the called subref as arguments 2 and onwards.
487
488 Using this (instead of $self->_dbh or $self->dbh) ensures correct
489 exception handling and reconnection (or failover in future subclasses).
490
491 Your subref should have no side-effects outside of the database, as
492 there is the potential for your subref to be partially double-executed
493 if the database connection was stale/dysfunctional.
494
495 Example:
496
497   my @stuff = $schema->storage->dbh_do(
498     sub {
499       my ($storage, $dbh, @cols) = @_;
500       my $cols = join(q{, }, @cols);
501       $dbh->selectrow_array("SELECT $cols FROM foo");
502     },
503     @column_list
504   );
505
506 =cut
507
508 sub dbh_do {
509   my $self = shift;
510   my $code = shift;
511
512   my $dbh = $self->_dbh;
513
514   return $self->$code($dbh, @_) if $self->{_in_dbh_do}
515       || $self->{transaction_depth};
516
517   local $self->{_in_dbh_do} = 1;
518
519   my @result;
520   my $want_array = wantarray;
521
522   eval {
523     $self->_verify_pid if $dbh;
524     if(!$self->_dbh) {
525         $self->_populate_dbh;
526         $dbh = $self->_dbh;
527     }
528
529     if($want_array) {
530         @result = $self->$code($dbh, @_);
531     }
532     elsif(defined $want_array) {
533         $result[0] = $self->$code($dbh, @_);
534     }
535     else {
536         $self->$code($dbh, @_);
537     }
538   };
539
540   my $exception = $@;
541   if(!$exception) { return $want_array ? @result : $result[0] }
542
543   $self->throw_exception($exception) if $self->connected;
544
545   # We were not connected - reconnect and retry, but let any
546   #  exception fall right through this time
547   $self->_populate_dbh;
548   $self->$code($self->_dbh, @_);
549 }
550
551 # This is basically a blend of dbh_do above and DBIx::Class::Storage::txn_do.
552 # It also informs dbh_do to bypass itself while under the direction of txn_do,
553 #  via $self->{_in_dbh_do} (this saves some redundant eval and errorcheck, etc)
554 sub txn_do {
555   my $self = shift;
556   my $coderef = shift;
557
558   ref $coderef eq 'CODE' or $self->throw_exception
559     ('$coderef must be a CODE reference');
560
561   return $coderef->(@_) if $self->{transaction_depth} && ! $self->auto_savepoint;
562
563   local $self->{_in_dbh_do} = 1;
564
565   my @result;
566   my $want_array = wantarray;
567
568   my $tried = 0;
569   while(1) {
570     eval {
571       $self->_verify_pid if $self->_dbh;
572       $self->_populate_dbh if !$self->_dbh;
573
574       $self->txn_begin;
575       if($want_array) {
576           @result = $coderef->(@_);
577       }
578       elsif(defined $want_array) {
579           $result[0] = $coderef->(@_);
580       }
581       else {
582           $coderef->(@_);
583       }
584       $self->txn_commit;
585     };
586
587     my $exception = $@;
588     if(!$exception) { return $want_array ? @result : $result[0] }
589
590     if($tried++ > 0 || $self->connected) {
591       eval { $self->txn_rollback };
592       my $rollback_exception = $@;
593       if($rollback_exception) {
594         my $exception_class = "DBIx::Class::Storage::NESTED_ROLLBACK_EXCEPTION";
595         $self->throw_exception($exception)  # propagate nested rollback
596           if $rollback_exception =~ /$exception_class/;
597
598         $self->throw_exception(
599           "Transaction aborted: ${exception}. "
600           . "Rollback failed: ${rollback_exception}"
601         );
602       }
603       $self->throw_exception($exception)
604     }
605
606     # We were not connected, and was first try - reconnect and retry
607     # via the while loop
608     $self->_populate_dbh;
609   }
610 }
611
612 =head2 disconnect
613
614 Our C<disconnect> method also performs a rollback first if the
615 database is not in C<AutoCommit> mode.
616
617 =cut
618
619 sub disconnect {
620   my ($self) = @_;
621
622   if( $self->connected ) {
623     my @actions;
624
625     push @actions, ( $self->on_disconnect_call || () );
626     push @actions, $self->_parse_connect_do ('on_disconnect_do');
627
628     $self->_do_connection_actions(disconnect_call_ => $_) for @actions;
629
630     $self->_dbh->rollback unless $self->_dbh_autocommit;
631     $self->_dbh->disconnect;
632     $self->_dbh(undef);
633     $self->{_dbh_gen}++;
634   }
635 }
636
637 =head2 with_deferred_fk_checks
638
639 =over 4
640
641 =item Arguments: C<$coderef>
642
643 =item Return Value: The return value of $coderef
644
645 =back
646
647 Storage specific method to run the code ref with FK checks deferred or
648 in MySQL's case disabled entirely.
649
650 =cut
651
652 # Storage subclasses should override this
653 sub with_deferred_fk_checks {
654   my ($self, $sub) = @_;
655
656   $sub->();
657 }
658
659 sub connected {
660   my ($self) = @_;
661
662   if(my $dbh = $self->_dbh) {
663       if(defined $self->_conn_tid && $self->_conn_tid != threads->tid) {
664           $self->_dbh(undef);
665           $self->{_dbh_gen}++;
666           return;
667       }
668       else {
669           $self->_verify_pid;
670           return 0 if !$self->_dbh;
671       }
672       return ($dbh->FETCH('Active') && $self->_ping);
673   }
674
675   return 0;
676 }
677
678 sub _ping {
679   my $self = shift;
680
681   my $dbh = $self->_dbh or return 0;
682
683   return $dbh->ping;
684 }
685
686 # handle pid changes correctly
687 #  NOTE: assumes $self->_dbh is a valid $dbh
688 sub _verify_pid {
689   my ($self) = @_;
690
691   return if defined $self->_conn_pid && $self->_conn_pid == $$;
692
693   $self->_dbh->{InactiveDestroy} = 1;
694   $self->_dbh(undef);
695   $self->{_dbh_gen}++;
696
697   return;
698 }
699
700 sub ensure_connected {
701   my ($self) = @_;
702
703   unless ($self->connected) {
704     $self->_populate_dbh;
705   }
706 }
707
708 =head2 dbh
709
710 Returns the dbh - a data base handle of class L<DBI>.
711
712 =cut
713
714 sub dbh {
715   my ($self) = @_;
716
717   $self->ensure_connected;
718   return $self->_dbh;
719 }
720
721 sub _sql_maker_args {
722     my ($self) = @_;
723
724     return ( bindtype=>'columns', array_datatypes => 1, limit_dialect => $self->dbh, %{$self->_sql_maker_opts} );
725 }
726
727 sub sql_maker {
728   my ($self) = @_;
729   unless ($self->_sql_maker) {
730     my $sql_maker_class = $self->sql_maker_class;
731     $self->ensure_class_loaded ($sql_maker_class);
732     $self->_sql_maker($sql_maker_class->new( $self->_sql_maker_args ));
733   }
734   return $self->_sql_maker;
735 }
736
737 sub _rebless {}
738
739 sub _populate_dbh {
740   my ($self) = @_;
741   my @info = @{$self->_dbi_connect_info || []};
742   $self->_dbh($self->_connect(@info));
743
744   $self->_conn_pid($$);
745   $self->_conn_tid(threads->tid) if $INC{'threads.pm'};
746
747   $self->_determine_driver;
748
749   # Always set the transaction depth on connect, since
750   #  there is no transaction in progress by definition
751   $self->{transaction_depth} = $self->_dbh_autocommit ? 0 : 1;
752
753   my @actions;
754
755   push @actions, ( $self->on_connect_call || () );
756   push @actions, $self->_parse_connect_do ('on_connect_do');
757
758   $self->_do_connection_actions(connect_call_ => $_) for @actions;
759 }
760
761 sub _determine_driver {
762   my ($self) = @_;
763
764   if (ref $self eq 'DBIx::Class::Storage::DBI') {
765     my $driver;
766
767     if ($self->_dbh) { # we are connected
768       $driver = $self->_dbh->{Driver}{Name};
769     } else {
770       # try to use dsn to not require being connected, the driver may still
771       # force a connection in _rebless to determine version
772       ($driver) = $self->_dbi_connect_info->[0] =~ /dbi:([^:]+):/i;
773     }
774
775     my $storage_class = "DBIx::Class::Storage::DBI::${driver}";
776     if ($self->load_optional_class($storage_class)) {
777       mro::set_mro($storage_class, 'c3');
778       bless $self, $storage_class;
779       $self->_rebless();
780     }
781   }
782 }
783
784 sub _do_connection_actions {
785   my $self          = shift;
786   my $method_prefix = shift;
787   my $call          = shift;
788
789   if (not ref($call)) {
790     my $method = $method_prefix . $call;
791     $self->$method(@_);
792   } elsif (ref($call) eq 'CODE') {
793     $self->$call(@_);
794   } elsif (ref($call) eq 'ARRAY') {
795     if (ref($call->[0]) ne 'ARRAY') {
796       $self->_do_connection_actions($method_prefix, $_) for @$call;
797     } else {
798       $self->_do_connection_actions($method_prefix, @$_) for @$call;
799     }
800   } else {
801     $self->throw_exception (sprintf ("Don't know how to process conection actions of type '%s'", ref($call)) );
802   }
803
804   return $self;
805 }
806
807 sub connect_call_do_sql {
808   my $self = shift;
809   $self->_do_query(@_);
810 }
811
812 sub disconnect_call_do_sql {
813   my $self = shift;
814   $self->_do_query(@_);
815 }
816
817 # override in db-specific backend when necessary
818 sub connect_call_datetime_setup { 1 }
819
820 sub _do_query {
821   my ($self, $action) = @_;
822
823   if (ref $action eq 'CODE') {
824     $action = $action->($self);
825     $self->_do_query($_) foreach @$action;
826   }
827   else {
828     # Most debuggers expect ($sql, @bind), so we need to exclude
829     # the attribute hash which is the second argument to $dbh->do
830     # furthermore the bind values are usually to be presented
831     # as named arrayref pairs, so wrap those here too
832     my @do_args = (ref $action eq 'ARRAY') ? (@$action) : ($action);
833     my $sql = shift @do_args;
834     my $attrs = shift @do_args;
835     my @bind = map { [ undef, $_ ] } @do_args;
836
837     $self->_query_start($sql, @bind);
838     $self->_dbh->do($sql, $attrs, @do_args);
839     $self->_query_end($sql, @bind);
840   }
841
842   return $self;
843 }
844
845 sub _connect {
846   my ($self, @info) = @_;
847
848   $self->throw_exception("You failed to provide any connection info")
849     if !@info;
850
851   my ($old_connect_via, $dbh);
852
853   if ($INC{'Apache/DBI.pm'} && $ENV{MOD_PERL}) {
854     $old_connect_via = $DBI::connect_via;
855     $DBI::connect_via = 'connect';
856   }
857
858   eval {
859     if(ref $info[0] eq 'CODE') {
860        $dbh = &{$info[0]}
861     }
862     else {
863        $dbh = DBI->connect(@info);
864     }
865
866     if($dbh && !$self->unsafe) {
867       my $weak_self = $self;
868       Scalar::Util::weaken($weak_self);
869       $dbh->{HandleError} = sub {
870           if ($weak_self) {
871             $weak_self->throw_exception("DBI Exception: $_[0]");
872           }
873           else {
874             croak ("DBI Exception: $_[0]");
875           }
876       };
877       $dbh->{ShowErrorStatement} = 1;
878       $dbh->{RaiseError} = 1;
879       $dbh->{PrintError} = 0;
880     }
881   };
882
883   $DBI::connect_via = $old_connect_via if $old_connect_via;
884
885   $self->throw_exception("DBI Connection failed: " . ($@||$DBI::errstr))
886     if !$dbh || $@;
887
888   $self->_dbh_autocommit($dbh->{AutoCommit});
889
890   $dbh;
891 }
892
893 sub svp_begin {
894   my ($self, $name) = @_;
895
896   $name = $self->_svp_generate_name
897     unless defined $name;
898
899   $self->throw_exception ("You can't use savepoints outside a transaction")
900     if $self->{transaction_depth} == 0;
901
902   $self->throw_exception ("Your Storage implementation doesn't support savepoints")
903     unless $self->can('_svp_begin');
904
905   push @{ $self->{savepoints} }, $name;
906
907   $self->debugobj->svp_begin($name) if $self->debug;
908
909   return $self->_svp_begin($name);
910 }
911
912 sub svp_release {
913   my ($self, $name) = @_;
914
915   $self->throw_exception ("You can't use savepoints outside a transaction")
916     if $self->{transaction_depth} == 0;
917
918   $self->throw_exception ("Your Storage implementation doesn't support savepoints")
919     unless $self->can('_svp_release');
920
921   if (defined $name) {
922     $self->throw_exception ("Savepoint '$name' does not exist")
923       unless grep { $_ eq $name } @{ $self->{savepoints} };
924
925     # Dig through the stack until we find the one we are releasing.  This keeps
926     # the stack up to date.
927     my $svp;
928
929     do { $svp = pop @{ $self->{savepoints} } } while $svp ne $name;
930   } else {
931     $name = pop @{ $self->{savepoints} };
932   }
933
934   $self->debugobj->svp_release($name) if $self->debug;
935
936   return $self->_svp_release($name);
937 }
938
939 sub svp_rollback {
940   my ($self, $name) = @_;
941
942   $self->throw_exception ("You can't use savepoints outside a transaction")
943     if $self->{transaction_depth} == 0;
944
945   $self->throw_exception ("Your Storage implementation doesn't support savepoints")
946     unless $self->can('_svp_rollback');
947
948   if (defined $name) {
949       # If they passed us a name, verify that it exists in the stack
950       unless(grep({ $_ eq $name } @{ $self->{savepoints} })) {
951           $self->throw_exception("Savepoint '$name' does not exist!");
952       }
953
954       # Dig through the stack until we find the one we are releasing.  This keeps
955       # the stack up to date.
956       while(my $s = pop(@{ $self->{savepoints} })) {
957           last if($s eq $name);
958       }
959       # Add the savepoint back to the stack, as a rollback doesn't remove the
960       # named savepoint, only everything after it.
961       push(@{ $self->{savepoints} }, $name);
962   } else {
963       # We'll assume they want to rollback to the last savepoint
964       $name = $self->{savepoints}->[-1];
965   }
966
967   $self->debugobj->svp_rollback($name) if $self->debug;
968
969   return $self->_svp_rollback($name);
970 }
971
972 sub _svp_generate_name {
973     my ($self) = @_;
974
975     return 'savepoint_'.scalar(@{ $self->{'savepoints'} });
976 }
977
978 sub txn_begin {
979   my $self = shift;
980   $self->ensure_connected();
981   if($self->{transaction_depth} == 0) {
982     $self->debugobj->txn_begin()
983       if $self->debug;
984     # this isn't ->_dbh-> because
985     #  we should reconnect on begin_work
986     #  for AutoCommit users
987     $self->dbh->begin_work;
988   } elsif ($self->auto_savepoint) {
989     $self->svp_begin;
990   }
991   $self->{transaction_depth}++;
992 }
993
994 sub txn_commit {
995   my $self = shift;
996   if ($self->{transaction_depth} == 1) {
997     my $dbh = $self->_dbh;
998     $self->debugobj->txn_commit()
999       if ($self->debug);
1000     $dbh->commit;
1001     $self->{transaction_depth} = 0
1002       if $self->_dbh_autocommit;
1003   }
1004   elsif($self->{transaction_depth} > 1) {
1005     $self->{transaction_depth}--;
1006     $self->svp_release
1007       if $self->auto_savepoint;
1008   }
1009 }
1010
1011 sub txn_rollback {
1012   my $self = shift;
1013   my $dbh = $self->_dbh;
1014   eval {
1015     if ($self->{transaction_depth} == 1) {
1016       $self->debugobj->txn_rollback()
1017         if ($self->debug);
1018       $self->{transaction_depth} = 0
1019         if $self->_dbh_autocommit;
1020       $dbh->rollback;
1021     }
1022     elsif($self->{transaction_depth} > 1) {
1023       $self->{transaction_depth}--;
1024       if ($self->auto_savepoint) {
1025         $self->svp_rollback;
1026         $self->svp_release;
1027       }
1028     }
1029     else {
1030       die DBIx::Class::Storage::NESTED_ROLLBACK_EXCEPTION->new;
1031     }
1032   };
1033   if ($@) {
1034     my $error = $@;
1035     my $exception_class = "DBIx::Class::Storage::NESTED_ROLLBACK_EXCEPTION";
1036     $error =~ /$exception_class/ and $self->throw_exception($error);
1037     # ensure that a failed rollback resets the transaction depth
1038     $self->{transaction_depth} = $self->_dbh_autocommit ? 0 : 1;
1039     $self->throw_exception($error);
1040   }
1041 }
1042
1043 # This used to be the top-half of _execute.  It was split out to make it
1044 #  easier to override in NoBindVars without duping the rest.  It takes up
1045 #  all of _execute's args, and emits $sql, @bind.
1046 sub _prep_for_execute {
1047   my ($self, $op, $extra_bind, $ident, $args) = @_;
1048
1049   if( Scalar::Util::blessed($ident) && $ident->isa("DBIx::Class::ResultSource") ) {
1050     $ident = $ident->from();
1051   }
1052
1053   my ($sql, @bind) = $self->sql_maker->$op($ident, @$args);
1054
1055   unshift(@bind,
1056     map { ref $_ eq 'ARRAY' ? $_ : [ '!!dummy', $_ ] } @$extra_bind)
1057       if $extra_bind;
1058   return ($sql, \@bind);
1059 }
1060
1061
1062 sub _fix_bind_params {
1063     my ($self, @bind) = @_;
1064
1065     ### Turn @bind from something like this:
1066     ###   ( [ "artist", 1 ], [ "cdid", 1, 3 ] )
1067     ### to this:
1068     ###   ( "'1'", "'1'", "'3'" )
1069     return
1070         map {
1071             if ( defined( $_ && $_->[1] ) ) {
1072                 map { qq{'$_'}; } @{$_}[ 1 .. $#$_ ];
1073             }
1074             else { q{'NULL'}; }
1075         } @bind;
1076 }
1077
1078 sub _query_start {
1079     my ( $self, $sql, @bind ) = @_;
1080
1081     if ( $self->debug ) {
1082         @bind = $self->_fix_bind_params(@bind);
1083
1084         $self->debugobj->query_start( $sql, @bind );
1085     }
1086 }
1087
1088 sub _query_end {
1089     my ( $self, $sql, @bind ) = @_;
1090
1091     if ( $self->debug ) {
1092         @bind = $self->_fix_bind_params(@bind);
1093         $self->debugobj->query_end( $sql, @bind );
1094     }
1095 }
1096
1097 sub _dbh_execute {
1098   my ($self, $dbh, $op, $extra_bind, $ident, $bind_attributes, @args) = @_;
1099
1100   my ($sql, $bind) = $self->_prep_for_execute($op, $extra_bind, $ident, \@args);
1101
1102   $self->_query_start( $sql, @$bind );
1103
1104   my $sth = $self->sth($sql,$op);
1105
1106   my $placeholder_index = 1;
1107
1108   foreach my $bound (@$bind) {
1109     my $attributes = {};
1110     my($column_name, @data) = @$bound;
1111
1112     if ($bind_attributes) {
1113       $attributes = $bind_attributes->{$column_name}
1114       if defined $bind_attributes->{$column_name};
1115     }
1116
1117     foreach my $data (@data) {
1118       my $ref = ref $data;
1119       $data = $ref && $ref ne 'ARRAY' ? ''.$data : $data; # stringify args (except arrayrefs)
1120
1121       $sth->bind_param($placeholder_index, $data, $attributes);
1122       $placeholder_index++;
1123     }
1124   }
1125
1126   # Can this fail without throwing an exception anyways???
1127   my $rv = $sth->execute();
1128   $self->throw_exception($sth->errstr) if !$rv;
1129
1130   $self->_query_end( $sql, @$bind );
1131
1132   return (wantarray ? ($rv, $sth, @$bind) : $rv);
1133 }
1134
1135 sub _execute {
1136     my $self = shift;
1137     $self->dbh_do('_dbh_execute', @_)
1138 }
1139
1140 sub insert {
1141   my ($self, $source, $to_insert) = @_;
1142
1143   my $ident = $source->from;
1144   my $bind_attributes = $self->source_bind_attributes($source);
1145
1146   my $updated_cols = {};
1147
1148   $self->ensure_connected;
1149   foreach my $col ( $source->columns ) {
1150     if ( !defined $to_insert->{$col} ) {
1151       my $col_info = $source->column_info($col);
1152
1153       if ( $col_info->{auto_nextval} ) {
1154         $updated_cols->{$col} = $to_insert->{$col} = $self->_sequence_fetch( 'nextval', $col_info->{sequence} || $self->_dbh_get_autoinc_seq($self->dbh, $source) );
1155       }
1156     }
1157   }
1158
1159   $self->_execute('insert' => [], $source, $bind_attributes, $to_insert);
1160
1161   return $updated_cols;
1162 }
1163
1164 ## Still not quite perfect, and EXPERIMENTAL
1165 ## Currently it is assumed that all values passed will be "normal", i.e. not
1166 ## scalar refs, or at least, all the same type as the first set, the statement is
1167 ## only prepped once.
1168 sub insert_bulk {
1169   my ($self, $source, $cols, $data) = @_;
1170   my %colvalues;
1171   my $table = $source->from;
1172   @colvalues{@$cols} = (0..$#$cols);
1173   my ($sql, @bind) = $self->sql_maker->insert($table, \%colvalues);
1174
1175   $self->_query_start( $sql, @bind );
1176   my $sth = $self->sth($sql);
1177
1178 #  @bind = map { ref $_ ? ''.$_ : $_ } @bind; # stringify args
1179
1180   ## This must be an arrayref, else nothing works!
1181   my $tuple_status = [];
1182
1183   ## Get the bind_attributes, if any exist
1184   my $bind_attributes = $self->source_bind_attributes($source);
1185
1186   ## Bind the values and execute
1187   my $placeholder_index = 1;
1188
1189   foreach my $bound (@bind) {
1190
1191     my $attributes = {};
1192     my ($column_name, $data_index) = @$bound;
1193
1194     if( $bind_attributes ) {
1195       $attributes = $bind_attributes->{$column_name}
1196       if defined $bind_attributes->{$column_name};
1197     }
1198
1199     my @data = map { $_->[$data_index] } @$data;
1200
1201     $sth->bind_param_array( $placeholder_index, [@data], $attributes );
1202     $placeholder_index++;
1203   }
1204   my $rv = eval { $sth->execute_array({ArrayTupleStatus => $tuple_status}) };
1205   if (my $err = $@) {
1206     my $i = 0;
1207     ++$i while $i <= $#$tuple_status && !ref $tuple_status->[$i];
1208
1209     $self->throw_exception($sth->errstr || "Unexpected populate error: $err")
1210       if ($i > $#$tuple_status);
1211
1212     require Data::Dumper;
1213     local $Data::Dumper::Terse = 1;
1214     local $Data::Dumper::Indent = 1;
1215     local $Data::Dumper::Useqq = 1;
1216     local $Data::Dumper::Quotekeys = 0;
1217
1218     $self->throw_exception(sprintf "%s for populate slice:\n%s",
1219       $tuple_status->[$i][1],
1220       Data::Dumper::Dumper(
1221         { map { $cols->[$_] => $data->[$i][$_] } (0 .. $#$cols) }
1222       ),
1223     );
1224   }
1225   $self->throw_exception($sth->errstr) if !$rv;
1226
1227   $self->_query_end( $sql, @bind );
1228   return (wantarray ? ($rv, $sth, @bind) : $rv);
1229 }
1230
1231 sub update {
1232   my $self = shift @_;
1233   my $source = shift @_;
1234   my $bind_attributes = $self->source_bind_attributes($source);
1235
1236   return $self->_execute('update' => [], $source, $bind_attributes, @_);
1237 }
1238
1239
1240 sub delete {
1241   my $self = shift @_;
1242   my $source = shift @_;
1243
1244   my $bind_attrs = $self->source_bind_attributes($source);
1245
1246   return $self->_execute('delete' => [], $source, $bind_attrs, @_);
1247 }
1248
1249 # We were sent here because the $rs contains a complex search
1250 # which will require a subquery to select the correct rows
1251 # (i.e. joined or limited resultsets)
1252 #
1253 # Genarating a single PK column subquery is trivial and supported
1254 # by all RDBMS. However if we have a multicolumn PK, things get ugly.
1255 # Look at _multipk_update_delete()
1256 sub _subq_update_delete {
1257   my $self = shift;
1258   my ($rs, $op, $values) = @_;
1259
1260   my $rsrc = $rs->result_source;
1261
1262   # we already check this, but double check naively just in case. Should be removed soon
1263   my $sel = $rs->_resolved_attrs->{select};
1264   $sel = [ $sel ] unless ref $sel eq 'ARRAY';
1265   my @pcols = $rsrc->primary_columns;
1266   if (@$sel != @pcols) {
1267     $self->throw_exception (
1268       'Subquery update/delete can not be called on resultsets selecting a'
1269      .' number of columns different than the number of primary keys'
1270     );
1271   }
1272
1273   if (@pcols == 1) {
1274     return $self->$op (
1275       $rsrc,
1276       $op eq 'update' ? $values : (),
1277       { $pcols[0] => { -in => $rs->as_query } },
1278     );
1279   }
1280
1281   else {
1282     return $self->_multipk_update_delete (@_);
1283   }
1284 }
1285
1286 # ANSI SQL does not provide a reliable way to perform a multicol-PK
1287 # resultset update/delete involving subqueries. So by default resort
1288 # to simple (and inefficient) delete_all style per-row opearations,
1289 # while allowing specific storages to override this with a faster
1290 # implementation.
1291 #
1292 sub _multipk_update_delete {
1293   return shift->_per_row_update_delete (@_);
1294 }
1295
1296 # This is the default loop used to delete/update rows for multi PK
1297 # resultsets, and used by mysql exclusively (because it can't do anything
1298 # else).
1299 #
1300 # We do not use $row->$op style queries, because resultset update/delete
1301 # is not expected to cascade (this is what delete_all/update_all is for).
1302 #
1303 # There should be no race conditions as the entire operation is rolled
1304 # in a transaction.
1305 #
1306 sub _per_row_update_delete {
1307   my $self = shift;
1308   my ($rs, $op, $values) = @_;
1309
1310   my $rsrc = $rs->result_source;
1311   my @pcols = $rsrc->primary_columns;
1312
1313   my $guard = $self->txn_scope_guard;
1314
1315   # emulate the return value of $sth->execute for non-selects
1316   my $row_cnt = '0E0';
1317
1318   my $subrs_cur = $rs->cursor;
1319   while (my @pks = $subrs_cur->next) {
1320
1321     my $cond;
1322     for my $i (0.. $#pcols) {
1323       $cond->{$pcols[$i]} = $pks[$i];
1324     }
1325
1326     $self->$op (
1327       $rsrc,
1328       $op eq 'update' ? $values : (),
1329       $cond,
1330     );
1331
1332     $row_cnt++;
1333   }
1334
1335   $guard->commit;
1336
1337   return $row_cnt;
1338 }
1339
1340 sub _select {
1341   my $self = shift;
1342
1343   # localization is neccessary as
1344   # 1) there is no infrastructure to pass this around before SQLA2
1345   # 2) _select_args sets it and _prep_for_execute consumes it
1346   my $sql_maker = $self->sql_maker;
1347   local $sql_maker->{_dbic_rs_attrs};
1348
1349   return $self->_execute($self->_select_args(@_));
1350 }
1351
1352 sub _select_args_to_query {
1353   my $self = shift;
1354
1355   # localization is neccessary as
1356   # 1) there is no infrastructure to pass this around before SQLA2
1357   # 2) _select_args sets it and _prep_for_execute consumes it
1358   my $sql_maker = $self->sql_maker;
1359   local $sql_maker->{_dbic_rs_attrs};
1360
1361   # my ($op, $bind, $ident, $bind_attrs, $select, $cond, $order, $rows, $offset)
1362   #  = $self->_select_args($ident, $select, $cond, $attrs);
1363   my ($op, $bind, $ident, $bind_attrs, @args) =
1364     $self->_select_args(@_);
1365
1366   # my ($sql, $prepared_bind) = $self->_prep_for_execute($op, $bind, $ident, [ $select, $cond, $order, $rows, $offset ]);
1367   my ($sql, $prepared_bind) = $self->_prep_for_execute($op, $bind, $ident, \@args);
1368   $prepared_bind ||= [];
1369
1370   return wantarray
1371     ? ($sql, $prepared_bind, $bind_attrs)
1372     : \[ "($sql)", @$prepared_bind ]
1373   ;
1374 }
1375
1376 sub _select_args {
1377   my ($self, $ident, $select, $where, $attrs) = @_;
1378
1379   my $sql_maker = $self->sql_maker;
1380   $sql_maker->{_dbic_rs_attrs} = {
1381     %$attrs,
1382     select => $select,
1383     from => $ident,
1384     where => $where,
1385   };
1386
1387   my ($alias2source, $root_alias) = $self->_resolve_ident_sources ($ident);
1388
1389   # calculate bind_attrs before possible $ident mangling
1390   my $bind_attrs = {};
1391   for my $alias (keys %$alias2source) {
1392     my $bindtypes = $self->source_bind_attributes ($alias2source->{$alias}) || {};
1393     for my $col (keys %$bindtypes) {
1394
1395       my $fqcn = join ('.', $alias, $col);
1396       $bind_attrs->{$fqcn} = $bindtypes->{$col} if $bindtypes->{$col};
1397
1398       # so that unqualified searches can be bound too
1399       $bind_attrs->{$col} = $bind_attrs->{$fqcn} if $alias eq $root_alias;
1400     }
1401   }
1402
1403   # adjust limits
1404   if (
1405     $attrs->{software_limit}
1406       ||
1407     $sql_maker->_default_limit_syntax eq "GenericSubQ"
1408   ) {
1409     $attrs->{software_limit} = 1;
1410   }
1411   else {
1412     $self->throw_exception("rows attribute must be positive if present")
1413       if (defined($attrs->{rows}) && !($attrs->{rows} > 0));
1414
1415     # MySQL actually recommends this approach.  I cringe.
1416     $attrs->{rows} = 2**48 if not defined $attrs->{rows} and defined $attrs->{offset};
1417   }
1418
1419   my @limit;
1420
1421   # see if we need to tear the prefetch apart (either limited has_many or grouped prefetch)
1422   # otherwise delegate the limiting to the storage, unless software limit was requested
1423   if (
1424     ( $attrs->{rows} && keys %{$attrs->{collapse}} )
1425        ||
1426     ( $attrs->{group_by} && @{$attrs->{group_by}} &&
1427       $attrs->{prefetch_select} && @{$attrs->{prefetch_select}} )
1428   ) {
1429     ($ident, $select, $where, $attrs)
1430       = $self->_adjust_select_args_for_complex_prefetch ($ident, $select, $where, $attrs);
1431   }
1432   elsif (! $attrs->{software_limit} ) {
1433     push @limit, $attrs->{rows}, $attrs->{offset};
1434   }
1435
1436 ###
1437   # This would be the point to deflate anything found in $where
1438   # (and leave $attrs->{bind} intact). Problem is - inflators historically
1439   # expect a row object. And all we have is a resultsource (it is trivial
1440   # to extract deflator coderefs via $alias2source above).
1441   #
1442   # I don't see a way forward other than changing the way deflators are
1443   # invoked, and that's just bad...
1444 ###
1445
1446   my $order = { map
1447     { $attrs->{$_} ? ( $_ => $attrs->{$_} ) : ()  }
1448     (qw/order_by group_by having _virtual_order_by/ )
1449   };
1450
1451   return ('select', $attrs->{bind}, $ident, $bind_attrs, $select, $where, $order, @limit);
1452 }
1453
1454 sub _adjust_select_args_for_complex_prefetch {
1455   my ($self, $from, $select, $where, $attrs) = @_;
1456
1457   # copies for mangling
1458   $from = [ @$from ];
1459   $select = [ @$select ];
1460   $attrs = { %$attrs };
1461
1462   $self->throw_exception ('Complex prefetches are not supported on resultsets with a custom from attribute')
1463     if (ref $from ne 'ARRAY');
1464
1465   # separate attributes
1466   my $sub_attrs = { %$attrs };
1467   delete $attrs->{$_} for qw/where bind rows offset group_by having/;
1468   delete $sub_attrs->{$_} for qw/for collapse prefetch_select _collapse_order_by select as/;
1469
1470   my $alias = $attrs->{alias};
1471
1472   # create subquery select list - loop only over primary columns
1473   my $sub_select = [];
1474   for my $i (0 .. @{$attrs->{select}} - @{$attrs->{prefetch_select}} - 1) {
1475     my $sel = $attrs->{select}[$i];
1476
1477     # alias any functions to the dbic-side 'as' label
1478     # adjust the outer select accordingly
1479     if (ref $sel eq 'HASH' && !$sel->{-select}) {
1480       $sel = { -select => $sel, -as => $attrs->{as}[$i] };
1481       $select->[$i] = join ('.', $attrs->{alias}, $attrs->{as}[$i]);
1482     }
1483
1484     push @$sub_select, $sel;
1485   }
1486
1487   # bring over all non-collapse-induced order_by into the inner query (if any)
1488   # the outer one will have to keep them all
1489   delete $sub_attrs->{order_by};
1490   if (my $ord_cnt = @{$attrs->{order_by}} - @{$attrs->{_collapse_order_by}} ) {
1491     $sub_attrs->{order_by} = [
1492       @{$attrs->{order_by}}[ 0 .. $ord_cnt - 1]
1493     ];
1494   }
1495
1496   # mangle {from}
1497   my $select_root = shift @$from;
1498   my @outer_from = @$from;
1499
1500   my %inner_joins;
1501   my %join_info = map { $_->[0]{-alias} => $_->[0] } (@$from);
1502
1503   # in complex search_related chains $alias may *not* be 'me'
1504   # so always include it in the inner join, and also shift away
1505   # from the outer stack, so that the two datasets actually do
1506   # meet
1507   if ($select_root->{-alias} ne $alias) {
1508     $inner_joins{$alias} = 1;
1509
1510     while (@outer_from && $outer_from[0][0]{-alias} ne $alias) {
1511       shift @outer_from;
1512     }
1513     if (! @outer_from) {
1514       $self->throw_exception ("Unable to find '$alias' in the {from} stack, something is wrong");
1515     }
1516
1517     shift @outer_from; # the new subquery will represent this alias, so get rid of it
1518   }
1519
1520
1521   # decide which parts of the join will remain on the inside
1522   #
1523   # this is not a very viable optimisation, but it was written
1524   # before I realised this, so might as well remain. We can throw
1525   # away _any_ branches of the join tree that are:
1526   # 1) not mentioned in the condition/order
1527   # 2) left-join leaves (or left-join leaf chains)
1528   # Most of the join conditions will not satisfy this, but for real
1529   # complex queries some might, and we might make some RDBMS happy.
1530   #
1531   #
1532   # since we do not have introspectable SQLA, we fall back to ugly
1533   # scanning of raw SQL for WHERE, and for pieces of ORDER BY
1534   # in order to determine what goes into %inner_joins
1535   # It may not be very efficient, but it's a reasonable stop-gap
1536   {
1537     # produce stuff unquoted, so it can be scanned
1538     my $sql_maker = $self->sql_maker;
1539     local $sql_maker->{quote_char};
1540
1541     my @order_by = (map
1542       { ref $_ ? $_->[0] : $_ }
1543       $sql_maker->_order_by_chunks ($sub_attrs->{order_by})
1544     );
1545
1546     my $where_sql = $sql_maker->where ($where);
1547
1548     # sort needed joins
1549     for my $alias (keys %join_info) {
1550
1551       # any table alias found on a column name in where or order_by
1552       # gets included in %inner_joins
1553       # Also any parent joins that are needed to reach this particular alias
1554       for my $piece ($where_sql, @order_by ) {
1555         if ($piece =~ /\b$alias\./) {
1556           $inner_joins{$alias} = 1;
1557         }
1558       }
1559     }
1560   }
1561
1562   # scan for non-leaf/non-left joins and mark as needed
1563   # also mark all ancestor joins that are needed to reach this particular alias
1564   # (e.g.  join => { cds => 'tracks' } - tracks will bring cds too )
1565   #
1566   # traverse by the size of the -join_path i.e. reverse depth first
1567   for my $alias (sort { @{$join_info{$b}{-join_path}} <=> @{$join_info{$a}{-join_path}} } (keys %join_info) ) {
1568
1569     my $j = $join_info{$alias};
1570     $inner_joins{$alias} = 1 if (! $j->{-join_type} || ($j->{-join_type} !~ /^left$/i) );
1571
1572     if ($inner_joins{$alias}) {
1573       $inner_joins{$_} = 1 for (@{$j->{-join_path}});
1574     }
1575   }
1576
1577   # construct the inner $from for the subquery
1578   my $inner_from = [ $select_root ];
1579   for my $j (@$from) {
1580     push @$inner_from, $j if $inner_joins{$j->[0]{-alias}};
1581   }
1582
1583   # if a multi-type join was needed in the subquery ("multi" is indicated by
1584   # presence in {collapse}) - add a group_by to simulate the collapse in the subq
1585
1586   for my $alias (keys %inner_joins) {
1587
1588     # the dot comes from some weirdness in collapse
1589     # remove after the rewrite
1590     if ($attrs->{collapse}{".$alias"}) {
1591       $sub_attrs->{group_by} ||= $sub_select;
1592       last;
1593     }
1594   }
1595
1596   # generate the subquery
1597   my $subq = $self->_select_args_to_query (
1598     $inner_from,
1599     $sub_select,
1600     $where,
1601     $sub_attrs
1602   );
1603
1604   # put it in the new {from}
1605   unshift @outer_from, {
1606     -alias => $alias,
1607     -source_handle => $select_root->{-source_handle},
1608     $alias => $subq,
1609   };
1610
1611   # This is totally horrific - the $where ends up in both the inner and outer query
1612   # Unfortunately not much can be done until SQLA2 introspection arrives, and even
1613   # then if where conditions apply to the *right* side of the prefetch, you may have
1614   # to both filter the inner select (e.g. to apply a limit) and then have to re-filter
1615   # the outer select to exclude joins you didin't want in the first place
1616   #
1617   # OTOH it can be seen as a plus: <ash> (notes that this query would make a DBA cry ;)
1618   return (\@outer_from, $select, $where, $attrs);
1619 }
1620
1621 sub _resolve_ident_sources {
1622   my ($self, $ident) = @_;
1623
1624   my $alias2source = {};
1625   my $root_alias;
1626
1627   # the reason this is so contrived is that $ident may be a {from}
1628   # structure, specifying multiple tables to join
1629   if ( Scalar::Util::blessed($ident) && $ident->isa("DBIx::Class::ResultSource") ) {
1630     # this is compat mode for insert/update/delete which do not deal with aliases
1631     $alias2source->{me} = $ident;
1632     $root_alias = 'me';
1633   }
1634   elsif (ref $ident eq 'ARRAY') {
1635
1636     for (@$ident) {
1637       my $tabinfo;
1638       if (ref $_ eq 'HASH') {
1639         $tabinfo = $_;
1640         $root_alias = $tabinfo->{-alias};
1641       }
1642       if (ref $_ eq 'ARRAY' and ref $_->[0] eq 'HASH') {
1643         $tabinfo = $_->[0];
1644       }
1645
1646       $alias2source->{$tabinfo->{-alias}} = $tabinfo->{-source_handle}->resolve
1647         if ($tabinfo->{-source_handle});
1648     }
1649   }
1650
1651   return ($alias2source, $root_alias);
1652 }
1653
1654 # Takes $ident, \@column_names
1655 #
1656 # returns { $column_name => \%column_info, ... }
1657 # also note: this adds -result_source => $rsrc to the column info
1658 #
1659 # usage:
1660 #   my $col_sources = $self->_resolve_column_info($ident, [map $_->[0], @{$bind}]);
1661 sub _resolve_column_info {
1662   my ($self, $ident, $colnames) = @_;
1663   my ($alias2src, $root_alias) = $self->_resolve_ident_sources($ident);
1664
1665   my $sep = $self->_sql_maker_opts->{name_sep} || '.';
1666   $sep = "\Q$sep\E";
1667
1668   my (%return, %converted);
1669   foreach my $col (@$colnames) {
1670     my ($alias, $colname) = $col =~ m/^ (?: ([^$sep]+) $sep)? (.+) $/x;
1671
1672     # deal with unqualified cols - we assume the main alias for all
1673     # unqualified ones, ugly but can't think of anything better right now
1674     $alias ||= $root_alias;
1675
1676     my $rsrc = $alias2src->{$alias};
1677     $return{$col} = $rsrc && { %{$rsrc->column_info($colname)}, -result_source => $rsrc };
1678   }
1679   return \%return;
1680 }
1681
1682 # Returns a counting SELECT for a simple count
1683 # query. Abstracted so that a storage could override
1684 # this to { count => 'firstcol' } or whatever makes
1685 # sense as a performance optimization
1686 sub _count_select {
1687   #my ($self, $source, $rs_attrs) = @_;
1688   return { count => '*' };
1689 }
1690
1691 # Returns a SELECT which will end up in the subselect
1692 # There may or may not be a group_by, as the subquery
1693 # might have been called to accomodate a limit
1694 #
1695 # Most databases would be happy with whatever ends up
1696 # here, but some choke in various ways.
1697 #
1698 sub _subq_count_select {
1699   my ($self, $source, $rs_attrs) = @_;
1700   return $rs_attrs->{group_by} if $rs_attrs->{group_by};
1701
1702   my @pcols = map { join '.', $rs_attrs->{alias}, $_ } ($source->primary_columns);
1703   return @pcols ? \@pcols : [ 1 ];
1704 }
1705
1706
1707 sub source_bind_attributes {
1708   my ($self, $source) = @_;
1709
1710   my $bind_attributes;
1711   foreach my $column ($source->columns) {
1712
1713     my $data_type = $source->column_info($column)->{data_type} || '';
1714     $bind_attributes->{$column} = $self->bind_attribute_by_data_type($data_type)
1715      if $data_type;
1716   }
1717
1718   return $bind_attributes;
1719 }
1720
1721 =head2 select
1722
1723 =over 4
1724
1725 =item Arguments: $ident, $select, $condition, $attrs
1726
1727 =back
1728
1729 Handle a SQL select statement.
1730
1731 =cut
1732
1733 sub select {
1734   my $self = shift;
1735   my ($ident, $select, $condition, $attrs) = @_;
1736   return $self->cursor_class->new($self, \@_, $attrs);
1737 }
1738
1739 sub select_single {
1740   my $self = shift;
1741   my ($rv, $sth, @bind) = $self->_select(@_);
1742   my @row = $sth->fetchrow_array;
1743   my @nextrow = $sth->fetchrow_array if @row;
1744   if(@row && @nextrow) {
1745     carp "Query returned more than one row.  SQL that returns multiple rows is DEPRECATED for ->find and ->single";
1746   }
1747   # Need to call finish() to work round broken DBDs
1748   $sth->finish();
1749   return @row;
1750 }
1751
1752 =head2 sth
1753
1754 =over 4
1755
1756 =item Arguments: $sql
1757
1758 =back
1759
1760 Returns a L<DBI> sth (statement handle) for the supplied SQL.
1761
1762 =cut
1763
1764 sub _dbh_sth {
1765   my ($self, $dbh, $sql) = @_;
1766
1767   # 3 is the if_active parameter which avoids active sth re-use
1768   my $sth = $self->disable_sth_caching
1769     ? $dbh->prepare($sql)
1770     : $dbh->prepare_cached($sql, {}, 3);
1771
1772   # XXX You would think RaiseError would make this impossible,
1773   #  but apparently that's not true :(
1774   $self->throw_exception($dbh->errstr) if !$sth;
1775
1776   $sth;
1777 }
1778
1779 sub sth {
1780   my ($self, $sql) = @_;
1781   $self->dbh_do('_dbh_sth', $sql);
1782 }
1783
1784 sub _dbh_columns_info_for {
1785   my ($self, $dbh, $table) = @_;
1786
1787   if ($dbh->can('column_info')) {
1788     my %result;
1789     eval {
1790       my ($schema,$tab) = $table =~ /^(.+?)\.(.+)$/ ? ($1,$2) : (undef,$table);
1791       my $sth = $dbh->column_info( undef,$schema, $tab, '%' );
1792       $sth->execute();
1793       while ( my $info = $sth->fetchrow_hashref() ){
1794         my %column_info;
1795         $column_info{data_type}   = $info->{TYPE_NAME};
1796         $column_info{size}      = $info->{COLUMN_SIZE};
1797         $column_info{is_nullable}   = $info->{NULLABLE} ? 1 : 0;
1798         $column_info{default_value} = $info->{COLUMN_DEF};
1799         my $col_name = $info->{COLUMN_NAME};
1800         $col_name =~ s/^\"(.*)\"$/$1/;
1801
1802         $result{$col_name} = \%column_info;
1803       }
1804     };
1805     return \%result if !$@ && scalar keys %result;
1806   }
1807
1808   my %result;
1809   my $sth = $dbh->prepare($self->sql_maker->select($table, undef, \'1 = 0'));
1810   $sth->execute;
1811   my @columns = @{$sth->{NAME_lc}};
1812   for my $i ( 0 .. $#columns ){
1813     my %column_info;
1814     $column_info{data_type} = $sth->{TYPE}->[$i];
1815     $column_info{size} = $sth->{PRECISION}->[$i];
1816     $column_info{is_nullable} = $sth->{NULLABLE}->[$i] ? 1 : 0;
1817
1818     if ($column_info{data_type} =~ m/^(.*?)\((.*?)\)$/) {
1819       $column_info{data_type} = $1;
1820       $column_info{size}    = $2;
1821     }
1822
1823     $result{$columns[$i]} = \%column_info;
1824   }
1825   $sth->finish;
1826
1827   foreach my $col (keys %result) {
1828     my $colinfo = $result{$col};
1829     my $type_num = $colinfo->{data_type};
1830     my $type_name;
1831     if(defined $type_num && $dbh->can('type_info')) {
1832       my $type_info = $dbh->type_info($type_num);
1833       $type_name = $type_info->{TYPE_NAME} if $type_info;
1834       $colinfo->{data_type} = $type_name if $type_name;
1835     }
1836   }
1837
1838   return \%result;
1839 }
1840
1841 sub columns_info_for {
1842   my ($self, $table) = @_;
1843   $self->dbh_do('_dbh_columns_info_for', $table);
1844 }
1845
1846 =head2 last_insert_id
1847
1848 Return the row id of the last insert.
1849
1850 =cut
1851
1852 sub _dbh_last_insert_id {
1853     # All Storage's need to register their own _dbh_last_insert_id
1854     # the old SQLite-based method was highly inappropriate
1855
1856     my $self = shift;
1857     my $class = ref $self;
1858     $self->throw_exception (<<EOE);
1859
1860 No _dbh_last_insert_id() method found in $class.
1861 Since the method of obtaining the autoincrement id of the last insert
1862 operation varies greatly between different databases, this method must be
1863 individually implemented for every storage class.
1864 EOE
1865 }
1866
1867 sub last_insert_id {
1868   my $self = shift;
1869   $self->dbh_do('_dbh_last_insert_id', @_);
1870 }
1871
1872 =head2 sqlt_type
1873
1874 Returns the database driver name.
1875
1876 =cut
1877
1878 sub sqlt_type { shift->dbh->{Driver}->{Name} }
1879
1880 =head2 bind_attribute_by_data_type
1881
1882 Given a datatype from column info, returns a database specific bind
1883 attribute for C<< $dbh->bind_param($val,$attribute) >> or nothing if we will
1884 let the database planner just handle it.
1885
1886 Generally only needed for special case column types, like bytea in postgres.
1887
1888 =cut
1889
1890 sub bind_attribute_by_data_type {
1891     return;
1892 }
1893
1894 =head2 is_datatype_numeric
1895
1896 Given a datatype from column_info, returns a boolean value indicating if
1897 the current RDBMS considers it a numeric value. This controls how
1898 L<DBIx::Class::Row/set_column> decides whether to mark the column as
1899 dirty - when the datatype is deemed numeric a C<< != >> comparison will
1900 be performed instead of the usual C<eq>.
1901
1902 =cut
1903
1904 sub is_datatype_numeric {
1905   my ($self, $dt) = @_;
1906
1907   return 0 unless $dt;
1908
1909   return $dt =~ /^ (?:
1910     numeric | int(?:eger)? | (?:tiny|small|medium|big)int | dec(?:imal)? | real | float | double (?: \s+ precision)? | (?:big)?serial
1911   ) $/ix;
1912 }
1913
1914
1915 =head2 create_ddl_dir (EXPERIMENTAL)
1916
1917 =over 4
1918
1919 =item Arguments: $schema \@databases, $version, $directory, $preversion, \%sqlt_args
1920
1921 =back
1922
1923 Creates a SQL file based on the Schema, for each of the specified
1924 database engines in C<\@databases> in the given directory.
1925 (note: specify L<SQL::Translator> names, not L<DBI> driver names).
1926
1927 Given a previous version number, this will also create a file containing
1928 the ALTER TABLE statements to transform the previous schema into the
1929 current one. Note that these statements may contain C<DROP TABLE> or
1930 C<DROP COLUMN> statements that can potentially destroy data.
1931
1932 The file names are created using the C<ddl_filename> method below, please
1933 override this method in your schema if you would like a different file
1934 name format. For the ALTER file, the same format is used, replacing
1935 $version in the name with "$preversion-$version".
1936
1937 See L<SQL::Translator/METHODS> for a list of values for C<\%sqlt_args>.
1938 The most common value for this would be C<< { add_drop_table => 1 } >>
1939 to have the SQL produced include a C<DROP TABLE> statement for each table
1940 created. For quoting purposes supply C<quote_table_names> and
1941 C<quote_field_names>.
1942
1943 If no arguments are passed, then the following default values are assumed:
1944
1945 =over 4
1946
1947 =item databases  - ['MySQL', 'SQLite', 'PostgreSQL']
1948
1949 =item version    - $schema->schema_version
1950
1951 =item directory  - './'
1952
1953 =item preversion - <none>
1954
1955 =back
1956
1957 By default, C<\%sqlt_args> will have
1958
1959  { add_drop_table => 1, ignore_constraint_names => 1, ignore_index_names => 1 }
1960
1961 merged with the hash passed in. To disable any of those features, pass in a
1962 hashref like the following
1963
1964  { ignore_constraint_names => 0, # ... other options }
1965
1966
1967 Note that this feature is currently EXPERIMENTAL and may not work correctly
1968 across all databases, or fully handle complex relationships.
1969
1970 WARNING: Please check all SQL files created, before applying them.
1971
1972 =cut
1973
1974 sub create_ddl_dir {
1975   my ($self, $schema, $databases, $version, $dir, $preversion, $sqltargs) = @_;
1976
1977   if(!$dir || !-d $dir) {
1978     carp "No directory given, using ./\n";
1979     $dir = "./";
1980   }
1981   $databases ||= ['MySQL', 'SQLite', 'PostgreSQL'];
1982   $databases = [ $databases ] if(ref($databases) ne 'ARRAY');
1983
1984   my $schema_version = $schema->schema_version || '1.x';
1985   $version ||= $schema_version;
1986
1987   $sqltargs = {
1988     add_drop_table => 1,
1989     ignore_constraint_names => 1,
1990     ignore_index_names => 1,
1991     %{$sqltargs || {}}
1992   };
1993
1994   $self->throw_exception(q{Can't create a ddl file without SQL::Translator 0.09003: '}
1995       . $self->_check_sqlt_message . q{'})
1996           if !$self->_check_sqlt_version;
1997
1998   my $sqlt = SQL::Translator->new( $sqltargs );
1999
2000   $sqlt->parser('SQL::Translator::Parser::DBIx::Class');
2001   my $sqlt_schema = $sqlt->translate({ data => $schema })
2002     or $self->throw_exception ($sqlt->error);
2003
2004   foreach my $db (@$databases) {
2005     $sqlt->reset();
2006     $sqlt->{schema} = $sqlt_schema;
2007     $sqlt->producer($db);
2008
2009     my $file;
2010     my $filename = $schema->ddl_filename($db, $version, $dir);
2011     if (-e $filename && ($version eq $schema_version )) {
2012       # if we are dumping the current version, overwrite the DDL
2013       carp "Overwriting existing DDL file - $filename";
2014       unlink($filename);
2015     }
2016
2017     my $output = $sqlt->translate;
2018     if(!$output) {
2019       carp("Failed to translate to $db, skipping. (" . $sqlt->error . ")");
2020       next;
2021     }
2022     if(!open($file, ">$filename")) {
2023       $self->throw_exception("Can't open $filename for writing ($!)");
2024       next;
2025     }
2026     print $file $output;
2027     close($file);
2028
2029     next unless ($preversion);
2030
2031     require SQL::Translator::Diff;
2032
2033     my $prefilename = $schema->ddl_filename($db, $preversion, $dir);
2034     if(!-e $prefilename) {
2035       carp("No previous schema file found ($prefilename)");
2036       next;
2037     }
2038
2039     my $difffile = $schema->ddl_filename($db, $version, $dir, $preversion);
2040     if(-e $difffile) {
2041       carp("Overwriting existing diff file - $difffile");
2042       unlink($difffile);
2043     }
2044
2045     my $source_schema;
2046     {
2047       my $t = SQL::Translator->new($sqltargs);
2048       $t->debug( 0 );
2049       $t->trace( 0 );
2050
2051       $t->parser( $db )
2052         or $self->throw_exception ($t->error);
2053
2054       my $out = $t->translate( $prefilename )
2055         or $self->throw_exception ($t->error);
2056
2057       $source_schema = $t->schema;
2058
2059       $source_schema->name( $prefilename )
2060         unless ( $source_schema->name );
2061     }
2062
2063     # The "new" style of producers have sane normalization and can support
2064     # diffing a SQL file against a DBIC->SQLT schema. Old style ones don't
2065     # And we have to diff parsed SQL against parsed SQL.
2066     my $dest_schema = $sqlt_schema;
2067
2068     unless ( "SQL::Translator::Producer::$db"->can('preprocess_schema') ) {
2069       my $t = SQL::Translator->new($sqltargs);
2070       $t->debug( 0 );
2071       $t->trace( 0 );
2072
2073       $t->parser( $db )
2074         or $self->throw_exception ($t->error);
2075
2076       my $out = $t->translate( $filename )
2077         or $self->throw_exception ($t->error);
2078
2079       $dest_schema = $t->schema;
2080
2081       $dest_schema->name( $filename )
2082         unless $dest_schema->name;
2083     }
2084
2085     my $diff = SQL::Translator::Diff::schema_diff($source_schema, $db,
2086                                                   $dest_schema,   $db,
2087                                                   $sqltargs
2088                                                  );
2089     if(!open $file, ">$difffile") {
2090       $self->throw_exception("Can't write to $difffile ($!)");
2091       next;
2092     }
2093     print $file $diff;
2094     close($file);
2095   }
2096 }
2097
2098 =head2 deployment_statements
2099
2100 =over 4
2101
2102 =item Arguments: $schema, $type, $version, $directory, $sqlt_args
2103
2104 =back
2105
2106 Returns the statements used by L</deploy> and L<DBIx::Class::Schema/deploy>.
2107
2108 The L<SQL::Translator> (not L<DBI>) database driver name can be explicitly
2109 provided in C<$type>, otherwise the result of L</sqlt_type> is used as default.
2110
2111 C<$directory> is used to return statements from files in a previously created
2112 L</create_ddl_dir> directory and is optional. The filenames are constructed
2113 from L<DBIx::Class::Schema/ddl_filename>, the schema name and the C<$version>.
2114
2115 If no C<$directory> is specified then the statements are constructed on the
2116 fly using L<SQL::Translator> and C<$version> is ignored.
2117
2118 See L<SQL::Translator/METHODS> for a list of values for C<$sqlt_args>.
2119
2120 =cut
2121
2122 sub deployment_statements {
2123   my ($self, $schema, $type, $version, $dir, $sqltargs) = @_;
2124   # Need to be connected to get the correct sqlt_type
2125   $self->ensure_connected() unless $type;
2126   $type ||= $self->sqlt_type;
2127   $version ||= $schema->schema_version || '1.x';
2128   $dir ||= './';
2129   my $filename = $schema->ddl_filename($type, $version, $dir);
2130   if(-f $filename)
2131   {
2132       my $file;
2133       open($file, "<$filename")
2134         or $self->throw_exception("Can't open $filename ($!)");
2135       my @rows = <$file>;
2136       close($file);
2137       return join('', @rows);
2138   }
2139
2140   $self->throw_exception(q{Can't deploy without SQL::Translator 0.09003: '}
2141       . $self->_check_sqlt_message . q{'})
2142           if !$self->_check_sqlt_version;
2143
2144   require SQL::Translator::Parser::DBIx::Class;
2145   eval qq{use SQL::Translator::Producer::${type}};
2146   $self->throw_exception($@) if $@;
2147
2148   # sources needs to be a parser arg, but for simplicty allow at top level
2149   # coming in
2150   $sqltargs->{parser_args}{sources} = delete $sqltargs->{sources}
2151       if exists $sqltargs->{sources};
2152
2153   my $tr = SQL::Translator->new(%$sqltargs);
2154   SQL::Translator::Parser::DBIx::Class::parse( $tr, $schema );
2155   return "SQL::Translator::Producer::${type}"->can('produce')->($tr);
2156 }
2157
2158 sub deploy {
2159   my ($self, $schema, $type, $sqltargs, $dir) = @_;
2160   my $deploy = sub {
2161     my $line = shift;
2162     return if($line =~ /^--/);
2163     return if(!$line);
2164     # next if($line =~ /^DROP/m);
2165     return if($line =~ /^BEGIN TRANSACTION/m);
2166     return if($line =~ /^COMMIT/m);
2167     return if $line =~ /^\s+$/; # skip whitespace only
2168     $self->_query_start($line);
2169     eval {
2170       $self->dbh->do($line); # shouldn't be using ->dbh ?
2171     };
2172     if ($@) {
2173       carp qq{$@ (running "${line}")};
2174     }
2175     $self->_query_end($line);
2176   };
2177   my @statements = $self->deployment_statements($schema, $type, undef, $dir, { %{ $sqltargs || {} }, no_comments => 1 } );
2178   if (@statements > 1) {
2179     foreach my $statement (@statements) {
2180       $deploy->( $statement );
2181     }
2182   }
2183   elsif (@statements == 1) {
2184     foreach my $line ( split(";\n", $statements[0])) {
2185       $deploy->( $line );
2186     }
2187   }
2188 }
2189
2190 =head2 datetime_parser
2191
2192 Returns the datetime parser class
2193
2194 =cut
2195
2196 sub datetime_parser {
2197   my $self = shift;
2198   return $self->{datetime_parser} ||= do {
2199     $self->ensure_connected;
2200     $self->build_datetime_parser(@_);
2201   };
2202 }
2203
2204 =head2 datetime_parser_type
2205
2206 Defines (returns) the datetime parser class - currently hardwired to
2207 L<DateTime::Format::MySQL>
2208
2209 =cut
2210
2211 sub datetime_parser_type { "DateTime::Format::MySQL"; }
2212
2213 =head2 build_datetime_parser
2214
2215 See L</datetime_parser>
2216
2217 =cut
2218
2219 sub build_datetime_parser {
2220   my $self = shift;
2221   my $type = $self->datetime_parser_type(@_);
2222   eval "use ${type}";
2223   $self->throw_exception("Couldn't load ${type}: $@") if $@;
2224   return $type;
2225 }
2226
2227 {
2228     my $_check_sqlt_version; # private
2229     my $_check_sqlt_message; # private
2230     sub _check_sqlt_version {
2231         return $_check_sqlt_version if defined $_check_sqlt_version;
2232         eval 'use SQL::Translator "0.09003"';
2233         $_check_sqlt_message = $@ || '';
2234         $_check_sqlt_version = !$@;
2235     }
2236
2237     sub _check_sqlt_message {
2238         _check_sqlt_version if !defined $_check_sqlt_message;
2239         $_check_sqlt_message;
2240     }
2241 }
2242
2243 =head2 is_replicating
2244
2245 A boolean that reports if a particular L<DBIx::Class::Storage::DBI> is set to
2246 replicate from a master database.  Default is undef, which is the result
2247 returned by databases that don't support replication.
2248
2249 =cut
2250
2251 sub is_replicating {
2252     return;
2253
2254 }
2255
2256 =head2 lag_behind_master
2257
2258 Returns a number that represents a certain amount of lag behind a master db
2259 when a given storage is replicating.  The number is database dependent, but
2260 starts at zero and increases with the amount of lag. Default in undef
2261
2262 =cut
2263
2264 sub lag_behind_master {
2265     return;
2266 }
2267
2268 sub DESTROY {
2269   my $self = shift;
2270   return if !$self->_dbh;
2271   $self->_verify_pid;
2272   $self->_dbh(undef);
2273 }
2274
2275 1;
2276
2277 =head1 USAGE NOTES
2278
2279 =head2 DBIx::Class and AutoCommit
2280
2281 DBIx::Class can do some wonderful magic with handling exceptions,
2282 disconnections, and transactions when you use C<< AutoCommit => 1 >>
2283 combined with C<txn_do> for transaction support.
2284
2285 If you set C<< AutoCommit => 0 >> in your connect info, then you are always
2286 in an assumed transaction between commits, and you're telling us you'd
2287 like to manage that manually.  A lot of the magic protections offered by
2288 this module will go away.  We can't protect you from exceptions due to database
2289 disconnects because we don't know anything about how to restart your
2290 transactions.  You're on your own for handling all sorts of exceptional
2291 cases if you choose the C<< AutoCommit => 0 >> path, just as you would
2292 be with raw DBI.
2293
2294
2295
2296 =head1 AUTHORS
2297
2298 Matt S. Trout <mst@shadowcatsystems.co.uk>
2299
2300 Andy Grundman <andy@hybridized.org>
2301
2302 =head1 LICENSE
2303
2304 You may distribute this code under the same terms as Perl itself.
2305
2306 =cut