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