1 package DBIx::Class::Storage::DBI;
2 # -*- mode: cperl; cperl-indent-level: 2 -*-
4 use base 'DBIx::Class::Storage';
9 use SQL::Abstract::Limit;
10 use DBIx::Class::Storage::DBI::Cursor;
11 use DBIx::Class::Storage::Statistics;
12 use Scalar::Util qw/blessed weaken/;
14 __PACKAGE__->mk_group_accessors('simple' =>
15 qw/_connect_info _dbi_connect_info _dbh _sql_maker _sql_maker_opts
16 _conn_pid _conn_tid disable_sth_caching on_connect_do
17 on_disconnect_do transaction_depth unsafe _dbh_autocommit/
20 __PACKAGE__->cursor_class('DBIx::Class::Storage::DBI::Cursor');
22 __PACKAGE__->mk_group_accessors('inherited' => qw/sql_maker_class/);
23 __PACKAGE__->sql_maker_class('DBIC::SQL::Abstract');
27 package DBIC::SQL::Abstract; # Would merge upstream, but nate doesn't reply :(
29 use base qw/SQL::Abstract::Limit/;
31 # This prevents the caching of $dbh in S::A::L, I believe
33 my $self = shift->SUPER::new(@_);
35 # If limit_dialect is a ref (like a $dbh), go ahead and replace
36 # it with what it resolves to:
37 $self->{limit_dialect} = $self->_find_syntax($self->{limit_dialect})
38 if ref $self->{limit_dialect};
44 my ($self, $sql, $order, $rows, $offset ) = @_;
47 my $last = $rows + $offset;
48 my ( $order_by ) = $self->_order_by( $order );
53 SELECT Q1.*, ROW_NUMBER() OVER( ) AS ROW_NUM FROM (
58 WHERE ROW_NUM BETWEEN $offset AND $last
64 # While we're at it, this should make LIMIT queries more efficient,
65 # without digging into things too deeply
66 use Scalar::Util 'blessed';
68 my ($self, $syntax) = @_;
69 my $dbhname = blessed($syntax) ? $syntax->{Driver}{Name} : $syntax;
70 if(ref($self) && $dbhname && $dbhname eq 'DB2') {
71 return 'RowNumberOver';
74 $self->{_cached_syntax} ||= $self->SUPER::_find_syntax($syntax);
78 my ($self, $table, $fields, $where, $order, @rest) = @_;
79 $table = $self->_quote($table) unless ref($table);
80 local $self->{rownum_hack_count} = 1
81 if (defined $rest[0] && $self->{limit_dialect} eq 'RowNum');
82 @rest = (-1) unless defined $rest[0];
83 die "LIMIT 0 Does Not Compute" if $rest[0] == 0;
84 # and anyway, SQL::Abstract::Limit will cause a barf if we don't first
85 local $self->{having_bind} = [];
86 my ($sql, @ret) = $self->SUPER::select(
87 $table, $self->_recurse_fields($fields), $where, $order, @rest
92 $self->{for} eq 'update' ? ' FOR UPDATE' :
93 $self->{for} eq 'shared' ? ' FOR SHARE' :
98 return wantarray ? ($sql, @ret, @{$self->{having_bind}}) : $sql;
104 $table = $self->_quote($table) unless ref($table);
105 $self->SUPER::insert($table, @_);
111 $table = $self->_quote($table) unless ref($table);
112 $self->SUPER::update($table, @_);
118 $table = $self->_quote($table) unless ref($table);
119 $self->SUPER::delete($table, @_);
125 return $_[1].$self->_order_by($_[2]);
127 return $self->SUPER::_emulate_limit(@_);
131 sub _recurse_fields {
132 my ($self, $fields, $params) = @_;
133 my $ref = ref $fields;
134 return $self->_quote($fields) unless $ref;
135 return $$fields if $ref eq 'SCALAR';
137 if ($ref eq 'ARRAY') {
138 return join(', ', map {
139 $self->_recurse_fields($_)
140 .(exists $self->{rownum_hack_count} && !($params && $params->{no_rownum_hack})
141 ? ' AS col'.$self->{rownum_hack_count}++
144 } elsif ($ref eq 'HASH') {
145 foreach my $func (keys %$fields) {
146 return $self->_sqlcase($func)
147 .'( '.$self->_recurse_fields($fields->{$func}).' )';
156 if (ref $_[0] eq 'HASH') {
157 if (defined $_[0]->{group_by}) {
158 $ret = $self->_sqlcase(' group by ')
159 .$self->_recurse_fields($_[0]->{group_by}, { no_rownum_hack => 1 });
161 if (defined $_[0]->{having}) {
163 ($frag, @extra) = $self->_recurse_where($_[0]->{having});
164 push(@{$self->{having_bind}}, @extra);
165 $ret .= $self->_sqlcase(' having ').$frag;
167 if (defined $_[0]->{order_by}) {
168 $ret .= $self->_order_by($_[0]->{order_by});
170 } elsif (ref $_[0] eq 'SCALAR') {
171 $ret = $self->_sqlcase(' order by ').${ $_[0] };
172 } elsif (ref $_[0] eq 'ARRAY' && @{$_[0]}) {
173 my @order = @{+shift};
174 $ret = $self->_sqlcase(' order by ')
176 my $r = $self->_order_by($_, @_);
177 $r =~ s/^ ?ORDER BY //i;
181 $ret = $self->SUPER::_order_by(@_);
186 sub _order_directions {
187 my ($self, $order) = @_;
188 $order = $order->{order_by} if ref $order eq 'HASH';
189 return $self->SUPER::_order_directions($order);
193 my ($self, $from) = @_;
194 if (ref $from eq 'ARRAY') {
195 return $self->_recurse_from(@$from);
196 } elsif (ref $from eq 'HASH') {
197 return $self->_make_as($from);
199 return $from; # would love to quote here but _table ends up getting called
200 # twice during an ->select without a limit clause due to
201 # the way S::A::Limit->select works. should maybe consider
202 # bypassing this and doing S::A::select($self, ...) in
203 # our select method above. meantime, quoting shims have
204 # been added to select/insert/update/delete here
209 my ($self, $from, @join) = @_;
211 push(@sqlf, $self->_make_as($from));
212 foreach my $j (@join) {
215 # check whether a join type exists
216 my $join_clause = '';
217 my $to_jt = ref($to) eq 'ARRAY' ? $to->[0] : $to;
218 if (ref($to_jt) eq 'HASH' and exists($to_jt->{-join_type})) {
219 $join_clause = ' '.uc($to_jt->{-join_type}).' JOIN ';
221 $join_clause = ' JOIN ';
223 push(@sqlf, $join_clause);
225 if (ref $to eq 'ARRAY') {
226 push(@sqlf, '(', $self->_recurse_from(@$to), ')');
228 push(@sqlf, $self->_make_as($to));
230 push(@sqlf, ' ON ', $self->_join_condition($on));
232 return join('', @sqlf);
236 my ($self, $from) = @_;
237 return join(' ', map { (ref $_ eq 'SCALAR' ? $$_ : $self->_quote($_)) }
238 reverse each %{$self->_skip_options($from)});
242 my ($self, $hash) = @_;
244 $clean_hash->{$_} = $hash->{$_}
245 for grep {!/^-/} keys %$hash;
249 sub _join_condition {
250 my ($self, $cond) = @_;
251 if (ref $cond eq 'HASH') {
256 # XXX no throw_exception() in this package and croak() fails with strange results
257 Carp::croak(ref($v) . qq{ reference arguments are not supported in JOINS - try using \"..." instead'})
258 if ref($v) ne 'SCALAR';
262 my $x = '= '.$self->_quote($v); $j{$_} = \$x;
265 return scalar($self->_recurse_where(\%j));
266 } elsif (ref $cond eq 'ARRAY') {
267 return join(' OR ', map { $self->_join_condition($_) } @$cond);
269 die "Can't handle this yet!";
274 my ($self, $label) = @_;
275 return '' unless defined $label;
276 return "*" if $label eq '*';
277 return $label unless $self->{quote_char};
278 if(ref $self->{quote_char} eq "ARRAY"){
279 return $self->{quote_char}->[0] . $label . $self->{quote_char}->[1]
280 if !defined $self->{name_sep};
281 my $sep = $self->{name_sep};
282 return join($self->{name_sep},
283 map { $self->{quote_char}->[0] . $_ . $self->{quote_char}->[1] }
284 split(/\Q$sep\E/,$label));
286 return $self->SUPER::_quote($label);
291 $self->{limit_dialect} = shift if @_;
292 return $self->{limit_dialect};
297 $self->{quote_char} = shift if @_;
298 return $self->{quote_char};
303 $self->{name_sep} = shift if @_;
304 return $self->{name_sep};
307 } # End of BEGIN block
311 DBIx::Class::Storage::DBI - DBI storage handler
317 This class represents the connection to an RDBMS via L<DBI>. See
318 L<DBIx::Class::Storage> for general information. This pod only
319 documents DBI-specific methods and behaviors.
326 my $new = shift->next::method(@_);
328 $new->transaction_depth(0);
329 $new->_sql_maker_opts({});
330 $new->{_in_dbh_do} = 0;
331 $new->{_dbh_gen} = 0;
338 The arguments of C<connect_info> are always a single array reference.
340 This is normally accessed via L<DBIx::Class::Schema/connection>, which
341 encapsulates its argument list in an arrayref before calling
342 C<connect_info> here.
344 The arrayref can either contain the same set of arguments one would
345 normally pass to L<DBI/connect>, or a lone code reference which returns
346 a connected database handle. Please note that the L<DBI> docs
347 recommend that you always explicitly set C<AutoCommit> to either
348 C<0> or C<1>. L<DBIx::Class> further recommends that it be set
349 to C<1>, and that you perform transactions via our L</txn_do>
350 method. L<DBIx::Class> will set it to C<1> if you do not do explicitly
351 set it to zero. This is the default for most DBDs. See below for more
354 In either case, if the final argument in your connect_info happens
355 to be a hashref, C<connect_info> will look there for several
356 connection-specific options:
362 Specifies things to do immediately after connecting or re-connecting to
363 the database. Its value may contain:
367 =item an array reference
369 This contains SQL statements to execute in order. Each element contains
370 a string or a code reference that returns a string.
372 =item a code reference
374 This contains some code to execute. Unlike code references within an
375 array reference, its return value is ignored.
379 =item on_disconnect_do
381 Takes arguments in the same form as L<on_connect_do> and executes them
382 immediately before disconnecting from the database.
384 Note, this only runs if you explicitly call L<disconnect> on the
387 =item disable_sth_caching
389 If set to a true value, this option will disable the caching of
390 statement handles via L<DBI/prepare_cached>.
394 Sets the limit dialect. This is useful for JDBC-bridge among others
395 where the remote SQL-dialect cannot be determined by the name of the
400 Specifies what characters to use to quote table and column names. If
401 you use this you will want to specify L<name_sep> as well.
403 quote_char expects either a single character, in which case is it is placed
404 on either side of the table/column, or an arrayref of length 2 in which case the
405 table/column name is placed between the elements.
407 For example under MySQL you'd use C<quote_char =E<gt> '`'>, and user SQL Server you'd
408 use C<quote_char =E<gt> [qw/[ ]/]>.
412 This only needs to be used in conjunction with L<quote_char>, and is used to
413 specify the charecter that seperates elements (schemas, tables, columns) from
414 each other. In most cases this is simply a C<.>.
418 This Storage driver normally installs its own C<HandleError>, sets
419 C<RaiseError> and C<ShowErrorStatement> on, and sets C<PrintError> off on
420 all database handles, including those supplied by a coderef. It does this
421 so that it can have consistent and useful error behavior.
423 If you set this option to a true value, Storage will not do its usual
424 modifications to the database handle's attributes, and instead relies on
425 the settings in your connect_info DBI options (or the values you set in
426 your connection coderef, in the case that you are connecting via coderef).
428 Note that your custom settings can cause Storage to malfunction,
429 especially if you set a C<HandleError> handler that suppresses exceptions
430 and/or disable C<RaiseError>.
434 These options can be mixed in with your other L<DBI> connection attributes,
435 or placed in a seperate hashref after all other normal L<DBI> connection
438 Every time C<connect_info> is invoked, any previous settings for
439 these options will be cleared before setting the new ones, regardless of
440 whether any options are specified in the new C<connect_info>.
442 Another Important Note:
444 DBIC can do some wonderful magic with handling exceptions,
445 disconnections, and transactions when you use C<AutoCommit => 1>
446 combined with C<txn_do> for transaction support.
448 If you set C<AutoCommit => 0> in your connect info, then you are always
449 in an assumed transaction between commits, and you're telling us you'd
450 like to manage that manually. A lot of DBIC's magic protections
451 go away. We can't protect you from exceptions due to database
452 disconnects because we don't know anything about how to restart your
453 transactions. You're on your own for handling all sorts of exceptional
454 cases if you choose the C<AutoCommit => 0> path, just as you would
459 # Simple SQLite connection
460 ->connect_info([ 'dbi:SQLite:./foo.db' ]);
463 ->connect_info([ sub { DBI->connect(...) } ]);
465 # A bit more complicated
472 { quote_char => q{"}, name_sep => q{.} },
476 # Equivalent to the previous example
482 { AutoCommit => 1, quote_char => q{"}, name_sep => q{.} },
486 # Subref + DBIC-specific connection options
489 sub { DBI->connect(...) },
493 on_connect_do => ['SET search_path TO myschema,otherschema,public'],
494 disable_sth_caching => 1,
502 my ($self, $info_arg) = @_;
504 return $self->_connect_info if !$info_arg;
506 # Kill sql_maker/_sql_maker_opts, so we get a fresh one with only
507 # the new set of options
508 $self->_sql_maker(undef);
509 $self->_sql_maker_opts({});
510 $self->_connect_info([@$info_arg]); # copy for _connect_info
512 my $dbi_info = [@$info_arg]; # copy for _dbi_connect_info
514 my $last_info = $dbi_info->[-1];
515 if(ref $last_info eq 'HASH') {
516 $last_info = { %$last_info }; # so delete is non-destructive
517 my @storage_option = qw(
518 on_connect_do on_disconnect_do disable_sth_caching unsafe cursor_class
520 for my $storage_opt (@storage_option) {
521 if(my $value = delete $last_info->{$storage_opt}) {
522 $self->$storage_opt($value);
525 for my $sql_maker_opt (qw/limit_dialect quote_char name_sep/) {
526 if(my $opt_val = delete $last_info->{$sql_maker_opt}) {
527 $self->_sql_maker_opts->{$sql_maker_opt} = $opt_val;
530 # re-insert modified hashref
531 $dbi_info->[-1] = $last_info;
533 # Get rid of any trailing empty hashref
534 pop(@$dbi_info) if !keys %$last_info;
536 $self->_dbi_connect_info($dbi_info);
538 $self->_connect_info;
543 This method is deprecated in favor of setting via L</connect_info>.
547 Arguments: $subref, @extra_coderef_args?
549 Execute the given subref using the new exception-based connection management.
551 The first two arguments will be the storage object that C<dbh_do> was called
552 on and a database handle to use. Any additional arguments will be passed
553 verbatim to the called subref as arguments 2 and onwards.
555 Using this (instead of $self->_dbh or $self->dbh) ensures correct
556 exception handling and reconnection (or failover in future subclasses).
558 Your subref should have no side-effects outside of the database, as
559 there is the potential for your subref to be partially double-executed
560 if the database connection was stale/dysfunctional.
564 my @stuff = $schema->storage->dbh_do(
566 my ($storage, $dbh, @cols) = @_;
567 my $cols = join(q{, }, @cols);
568 $dbh->selectrow_array("SELECT $cols FROM foo");
579 ref $coderef eq 'CODE' or $self->throw_exception
580 ('$coderef must be a CODE reference');
582 return $coderef->($self, $self->_dbh, @_) if $self->{_in_dbh_do}
583 || $self->{transaction_depth};
585 local $self->{_in_dbh_do} = 1;
588 my $want_array = wantarray;
591 $self->_verify_pid if $self->_dbh;
592 $self->_populate_dbh if !$self->_dbh;
594 @result = $coderef->($self, $self->_dbh, @_);
596 elsif(defined $want_array) {
597 $result[0] = $coderef->($self, $self->_dbh, @_);
600 $coderef->($self, $self->_dbh, @_);
605 if(!$exception) { return $want_array ? @result : $result[0] }
607 $self->throw_exception($exception) if $self->connected;
609 # We were not connected - reconnect and retry, but let any
610 # exception fall right through this time
611 $self->_populate_dbh;
612 $coderef->($self, $self->_dbh, @_);
615 # This is basically a blend of dbh_do above and DBIx::Class::Storage::txn_do.
616 # It also informs dbh_do to bypass itself while under the direction of txn_do,
617 # via $self->{_in_dbh_do} (this saves some redundant eval and errorcheck, etc)
622 ref $coderef eq 'CODE' or $self->throw_exception
623 ('$coderef must be a CODE reference');
625 return $coderef->(@_) if $self->{transaction_depth};
627 local $self->{_in_dbh_do} = 1;
630 my $want_array = wantarray;
635 $self->_verify_pid if $self->_dbh;
636 $self->_populate_dbh if !$self->_dbh;
640 @result = $coderef->(@_);
642 elsif(defined $want_array) {
643 $result[0] = $coderef->(@_);
652 if(!$exception) { return $want_array ? @result : $result[0] }
654 if($tried++ > 0 || $self->connected) {
655 eval { $self->txn_rollback };
656 my $rollback_exception = $@;
657 if($rollback_exception) {
658 my $exception_class = "DBIx::Class::Storage::NESTED_ROLLBACK_EXCEPTION";
659 $self->throw_exception($exception) # propagate nested rollback
660 if $rollback_exception =~ /$exception_class/;
662 $self->throw_exception(
663 "Transaction aborted: ${exception}. "
664 . "Rollback failed: ${rollback_exception}"
667 $self->throw_exception($exception)
670 # We were not connected, and was first try - reconnect and retry
672 $self->_populate_dbh;
678 Our C<disconnect> method also performs a rollback first if the
679 database is not in C<AutoCommit> mode.
686 if( $self->connected ) {
687 my $connection_do = $self->on_disconnect_do;
688 $self->_do_connection_actions($connection_do) if ref($connection_do);
690 $self->_dbh->rollback unless $self->_dbh_autocommit;
691 $self->_dbh->disconnect;
700 if(my $dbh = $self->_dbh) {
701 if(defined $self->_conn_tid && $self->_conn_tid != threads->tid) {
708 return 0 if !$self->_dbh;
710 return ($dbh->FETCH('Active') && $dbh->ping);
716 # handle pid changes correctly
717 # NOTE: assumes $self->_dbh is a valid $dbh
721 return if defined $self->_conn_pid && $self->_conn_pid == $$;
723 $self->_dbh->{InactiveDestroy} = 1;
730 sub ensure_connected {
733 unless ($self->connected) {
734 $self->_populate_dbh;
740 Returns the dbh - a data base handle of class L<DBI>.
747 $self->ensure_connected;
751 sub _sql_maker_args {
754 return ( bindtype=>'columns', limit_dialect => $self->dbh, %{$self->_sql_maker_opts} );
759 unless ($self->_sql_maker) {
760 my $sql_maker_class = $self->sql_maker_class;
761 $self->_sql_maker($sql_maker_class->new( $self->_sql_maker_args ));
763 return $self->_sql_maker;
768 my @info = @{$self->_dbi_connect_info || []};
769 $self->_dbh($self->_connect(@info));
771 # Always set the transaction depth on connect, since
772 # there is no transaction in progress by definition
773 $self->{transaction_depth} = $self->_dbh_autocommit ? 0 : 1;
775 if(ref $self eq 'DBIx::Class::Storage::DBI') {
776 my $driver = $self->_dbh->{Driver}->{Name};
777 if ($self->load_optional_class("DBIx::Class::Storage::DBI::${driver}")) {
778 bless $self, "DBIx::Class::Storage::DBI::${driver}";
779 $self->_rebless() if $self->can('_rebless');
783 my $connection_do = $self->on_connect_do;
784 $self->_do_connection_actions($connection_do) if ref($connection_do);
786 $self->_conn_pid($$);
787 $self->_conn_tid(threads->tid) if $INC{'threads.pm'};
790 sub _do_connection_actions {
792 my $connection_do = shift;
794 if (ref $connection_do eq 'ARRAY') {
795 $self->_do_query($_) foreach @$connection_do;
797 elsif (ref $connection_do eq 'CODE') {
805 my ($self, $action) = @_;
807 if (ref $action eq 'CODE') {
808 $action = $action->($self);
809 $self->_do_query($_) foreach @$action;
812 my @to_run = (ref $action eq 'ARRAY') ? (@$action) : ($action);
813 $self->_query_start(@to_run);
814 $self->_dbh->do(@to_run);
815 $self->_query_end(@to_run);
822 my ($self, @info) = @_;
824 $self->throw_exception("You failed to provide any connection info")
827 my ($old_connect_via, $dbh);
829 if ($INC{'Apache/DBI.pm'} && $ENV{MOD_PERL}) {
830 $old_connect_via = $DBI::connect_via;
831 $DBI::connect_via = 'connect';
835 if(ref $info[0] eq 'CODE') {
839 $dbh = DBI->connect(@info);
842 if($dbh && !$self->unsafe) {
843 my $weak_self = $self;
845 $dbh->{HandleError} = sub {
846 $weak_self->throw_exception("DBI Exception: $_[0]")
848 $dbh->{ShowErrorStatement} = 1;
849 $dbh->{RaiseError} = 1;
850 $dbh->{PrintError} = 0;
854 $DBI::connect_via = $old_connect_via if $old_connect_via;
856 $self->throw_exception("DBI Connection failed: " . ($@||$DBI::errstr))
859 $self->_dbh_autocommit($dbh->{AutoCommit});
867 $self->ensure_connected();
868 if($self->{transaction_depth} == 0) {
869 $self->debugobj->txn_begin()
871 # this isn't ->_dbh-> because
872 # we should reconnect on begin_work
873 # for AutoCommit users
874 $self->dbh->begin_work;
876 $self->{transaction_depth}++;
881 if ($self->{transaction_depth} == 1) {
882 my $dbh = $self->_dbh;
883 $self->debugobj->txn_commit()
886 $self->{transaction_depth} = 0
887 if $self->_dbh_autocommit;
889 elsif($self->{transaction_depth} > 1) {
890 $self->{transaction_depth}--
896 my $dbh = $self->_dbh;
898 if ($self->{transaction_depth} == 1) {
899 $self->debugobj->txn_rollback()
901 $self->{transaction_depth} = 0
902 if $self->_dbh_autocommit;
905 elsif($self->{transaction_depth} > 1) {
906 $self->{transaction_depth}--;
909 die DBIx::Class::Storage::NESTED_ROLLBACK_EXCEPTION->new;
914 my $exception_class = "DBIx::Class::Storage::NESTED_ROLLBACK_EXCEPTION";
915 $error =~ /$exception_class/ and $self->throw_exception($error);
916 # ensure that a failed rollback resets the transaction depth
917 $self->{transaction_depth} = $self->_dbh_autocommit ? 0 : 1;
918 $self->throw_exception($error);
922 # This used to be the top-half of _execute. It was split out to make it
923 # easier to override in NoBindVars without duping the rest. It takes up
924 # all of _execute's args, and emits $sql, @bind.
925 sub _prep_for_execute {
926 my ($self, $op, $extra_bind, $ident, $args) = @_;
928 my ($sql, @bind) = $self->sql_maker->$op($ident, @$args);
930 map { ref $_ eq 'ARRAY' ? $_ : [ '!!dummy', $_ ] } @$extra_bind)
933 return ($sql, \@bind);
936 sub _fix_bind_params {
937 my ($self, @bind) = @_;
939 ### Turn @bind from something like this:
940 ### ( [ "artist", 1 ], [ "cdid", 1, 3 ] )
942 ### ( "'1'", "'1'", "'3'" )
945 if ( defined( $_ && $_->[1] ) ) {
946 map { qq{'$_'}; } @{$_}[ 1 .. $#$_ ];
953 my ( $self, $sql, @bind ) = @_;
955 if ( $self->debug ) {
956 @bind = $self->_fix_bind_params(@bind);
957 $self->debugobj->query_start( $sql, @bind );
962 my ( $self, $sql, @bind ) = @_;
964 if ( $self->debug ) {
965 @bind = $self->_fix_bind_params(@bind);
966 $self->debugobj->query_end( $sql, @bind );
971 my ($self, $dbh, $op, $extra_bind, $ident, $bind_attributes, @args) = @_;
973 if( blessed($ident) && $ident->isa("DBIx::Class::ResultSource") ) {
974 $ident = $ident->from();
977 my ($sql, $bind) = $self->_prep_for_execute($op, $extra_bind, $ident, \@args);
979 $self->_query_start( $sql, @$bind );
981 my $sth = $self->sth($sql,$op);
983 my $placeholder_index = 1;
985 foreach my $bound (@$bind) {
987 my($column_name, @data) = @$bound;
989 if ($bind_attributes) {
990 $attributes = $bind_attributes->{$column_name}
991 if defined $bind_attributes->{$column_name};
994 foreach my $data (@data) {
995 $data = ref $data ? ''.$data : $data; # stringify args
997 $sth->bind_param($placeholder_index, $data, $attributes);
998 $placeholder_index++;
1002 # Can this fail without throwing an exception anyways???
1003 my $rv = $sth->execute();
1004 $self->throw_exception($sth->errstr) if !$rv;
1006 $self->_query_end( $sql, @$bind );
1008 return (wantarray ? ($rv, $sth, @$bind) : $rv);
1013 $self->dbh_do($self->can('_dbh_execute'), @_)
1017 my ($self, $source, $to_insert) = @_;
1019 my $ident = $source->from;
1020 my $bind_attributes = $self->source_bind_attributes($source);
1022 $self->_execute('insert' => [], $source, $bind_attributes, $to_insert);
1027 ## Still not quite perfect, and EXPERIMENTAL
1028 ## Currently it is assumed that all values passed will be "normal", i.e. not
1029 ## scalar refs, or at least, all the same type as the first set, the statement is
1030 ## only prepped once.
1032 my ($self, $source, $cols, $data) = @_;
1034 my $table = $source->from;
1035 @colvalues{@$cols} = (0..$#$cols);
1036 my ($sql, @bind) = $self->sql_maker->insert($table, \%colvalues);
1038 $self->_query_start( $sql, @bind );
1039 my $sth = $self->sth($sql);
1041 # @bind = map { ref $_ ? ''.$_ : $_ } @bind; # stringify args
1043 ## This must be an arrayref, else nothing works!
1045 my $tuple_status = [];
1048 ##print STDERR Dumper( $data, $sql, [@bind] );
1052 ## Get the bind_attributes, if any exist
1053 my $bind_attributes = $self->source_bind_attributes($source);
1055 ## Bind the values and execute
1056 my $placeholder_index = 1;
1058 foreach my $bound (@bind) {
1060 my $attributes = {};
1061 my ($column_name, $data_index) = @$bound;
1063 if( $bind_attributes ) {
1064 $attributes = $bind_attributes->{$column_name}
1065 if defined $bind_attributes->{$column_name};
1068 my @data = map { $_->[$data_index] } @$data;
1070 $sth->bind_param_array( $placeholder_index, [@data], $attributes );
1071 $placeholder_index++;
1073 my $rv = $sth->execute_array({ArrayTupleStatus => $tuple_status});
1074 $self->throw_exception($sth->errstr) if !$rv;
1076 $self->_query_end( $sql, @bind );
1077 return (wantarray ? ($rv, $sth, @bind) : $rv);
1081 my $self = shift @_;
1082 my $source = shift @_;
1083 my $bind_attributes = $self->source_bind_attributes($source);
1085 return $self->_execute('update' => [], $source, $bind_attributes, @_);
1090 my $self = shift @_;
1091 my $source = shift @_;
1093 my $bind_attrs = {}; ## If ever it's needed...
1095 return $self->_execute('delete' => [], $source, $bind_attrs, @_);
1099 my ($self, $ident, $select, $condition, $attrs) = @_;
1100 my $order = $attrs->{order_by};
1102 if (ref $condition eq 'SCALAR') {
1103 $order = $1 if $$condition =~ s/ORDER BY (.*)$//i;
1106 my $for = delete $attrs->{for};
1107 my $sql_maker = $self->sql_maker;
1108 local $sql_maker->{for} = $for;
1110 if (exists $attrs->{group_by} || $attrs->{having}) {
1112 group_by => $attrs->{group_by},
1113 having => $attrs->{having},
1114 ($order ? (order_by => $order) : ())
1117 my $bind_attrs = {}; ## Future support
1118 my @args = ('select', $attrs->{bind}, $ident, $bind_attrs, $select, $condition, $order);
1119 if ($attrs->{software_limit} ||
1120 $self->sql_maker->_default_limit_syntax eq "GenericSubQ") {
1121 $attrs->{software_limit} = 1;
1123 $self->throw_exception("rows attribute must be positive if present")
1124 if (defined($attrs->{rows}) && !($attrs->{rows} > 0));
1125 push @args, $attrs->{rows}, $attrs->{offset};
1128 return $self->_execute(@args);
1131 sub source_bind_attributes {
1132 my ($self, $source) = @_;
1134 my $bind_attributes;
1135 foreach my $column ($source->columns) {
1137 my $data_type = $source->column_info($column)->{data_type} || '';
1138 $bind_attributes->{$column} = $self->bind_attribute_by_data_type($data_type)
1142 return $bind_attributes;
1149 =item Arguments: $ident, $select, $condition, $attrs
1153 Handle a SQL select statement.
1159 my ($ident, $select, $condition, $attrs) = @_;
1160 return $self->cursor_class->new($self, \@_, $attrs);
1165 my ($rv, $sth, @bind) = $self->_select(@_);
1166 my @row = $sth->fetchrow_array;
1167 # Need to call finish() to work round broken DBDs
1176 =item Arguments: $sql
1180 Returns a L<DBI> sth (statement handle) for the supplied SQL.
1185 my ($self, $dbh, $sql) = @_;
1187 # 3 is the if_active parameter which avoids active sth re-use
1188 my $sth = $self->disable_sth_caching
1189 ? $dbh->prepare($sql)
1190 : $dbh->prepare_cached($sql, {}, 3);
1192 # XXX You would think RaiseError would make this impossible,
1193 # but apparently that's not true :(
1194 $self->throw_exception($dbh->errstr) if !$sth;
1200 my ($self, $sql) = @_;
1201 $self->dbh_do($self->can('_dbh_sth'), $sql);
1204 sub _dbh_columns_info_for {
1205 my ($self, $dbh, $table) = @_;
1207 if ($dbh->can('column_info')) {
1210 my ($schema,$tab) = $table =~ /^(.+?)\.(.+)$/ ? ($1,$2) : (undef,$table);
1211 my $sth = $dbh->column_info( undef,$schema, $tab, '%' );
1213 while ( my $info = $sth->fetchrow_hashref() ){
1215 $column_info{data_type} = $info->{TYPE_NAME};
1216 $column_info{size} = $info->{COLUMN_SIZE};
1217 $column_info{is_nullable} = $info->{NULLABLE} ? 1 : 0;
1218 $column_info{default_value} = $info->{COLUMN_DEF};
1219 my $col_name = $info->{COLUMN_NAME};
1220 $col_name =~ s/^\"(.*)\"$/$1/;
1222 $result{$col_name} = \%column_info;
1225 return \%result if !$@ && scalar keys %result;
1229 my $sth = $dbh->prepare($self->sql_maker->select($table, undef, \'1 = 0'));
1231 my @columns = @{$sth->{NAME_lc}};
1232 for my $i ( 0 .. $#columns ){
1234 $column_info{data_type} = $sth->{TYPE}->[$i];
1235 $column_info{size} = $sth->{PRECISION}->[$i];
1236 $column_info{is_nullable} = $sth->{NULLABLE}->[$i] ? 1 : 0;
1238 if ($column_info{data_type} =~ m/^(.*?)\((.*?)\)$/) {
1239 $column_info{data_type} = $1;
1240 $column_info{size} = $2;
1243 $result{$columns[$i]} = \%column_info;
1247 foreach my $col (keys %result) {
1248 my $colinfo = $result{$col};
1249 my $type_num = $colinfo->{data_type};
1251 if(defined $type_num && $dbh->can('type_info')) {
1252 my $type_info = $dbh->type_info($type_num);
1253 $type_name = $type_info->{TYPE_NAME} if $type_info;
1254 $colinfo->{data_type} = $type_name if $type_name;
1261 sub columns_info_for {
1262 my ($self, $table) = @_;
1263 $self->dbh_do($self->can('_dbh_columns_info_for'), $table);
1266 =head2 last_insert_id
1268 Return the row id of the last insert.
1272 sub _dbh_last_insert_id {
1273 my ($self, $dbh, $source, $col) = @_;
1274 # XXX This is a SQLite-ism as a default... is there a DBI-generic way?
1275 $dbh->func('last_insert_rowid');
1278 sub last_insert_id {
1280 $self->dbh_do($self->can('_dbh_last_insert_id'), @_);
1285 Returns the database driver name.
1289 sub sqlt_type { shift->dbh->{Driver}->{Name} }
1291 =head2 bind_attribute_by_data_type
1293 Given a datatype from column info, returns a database specific bind attribute for
1294 $dbh->bind_param($val,$attribute) or nothing if we will let the database planner
1297 Generally only needed for special case column types, like bytea in postgres.
1301 sub bind_attribute_by_data_type {
1305 =head2 create_ddl_dir
1309 =item Arguments: $schema \@databases, $version, $directory, $preversion, $sqlt_args
1313 Creates a SQL file based on the Schema, for each of the specified
1314 database types, in the given directory.
1320 my ($self, $schema, $databases, $version, $dir, $preversion, $sqltargs) = @_;
1322 if(!$dir || !-d $dir)
1324 warn "No directory given, using ./\n";
1327 $databases ||= ['MySQL', 'SQLite', 'PostgreSQL'];
1328 $databases = [ $databases ] if(ref($databases) ne 'ARRAY');
1329 $version ||= $schema->VERSION || '1.x';
1330 $sqltargs = { ( add_drop_table => 1 ), %{$sqltargs || {}} };
1332 $self->throw_exception(q{Can't create a ddl file without SQL::Translator 0.08: '}
1333 . $self->_check_sqlt_message . q{'})
1334 if !$self->_check_sqlt_version;
1336 my $sqlt = SQL::Translator->new({
1338 add_drop_table => 1,
1340 foreach my $db (@$databases)
1343 $sqlt->parser('SQL::Translator::Parser::DBIx::Class');
1344 # $sqlt->parser_args({'DBIx::Class' => $schema);
1345 $sqlt = $self->configure_sqlt($sqlt, $db);
1346 $sqlt->data($schema);
1347 $sqlt->producer($db);
1350 my $filename = $schema->ddl_filename($db, $dir, $version);
1353 warn("$filename already exists, skipping $db");
1357 my $output = $sqlt->translate;
1360 warn("Failed to translate to $db, skipping. (" . $sqlt->error . ")");
1363 if(!open($file, ">$filename"))
1365 $self->throw_exception("Can't open $filename for writing ($!)");
1368 print $file $output;
1373 require SQL::Translator::Diff;
1375 my $prefilename = $schema->ddl_filename($db, $dir, $preversion);
1376 # print "Previous version $prefilename\n";
1377 if(!-e $prefilename)
1379 warn("No previous schema file found ($prefilename)");
1382 #### We need to reparse the SQLite file we just wrote, so that
1383 ## Diff doesnt get all confoosed, and Diff is *very* confused.
1384 ## FIXME: rip Diff to pieces!
1385 # my $target_schema = $sqlt->schema;
1386 # unless ( $target_schema->name ) {
1387 # $target_schema->name( $filename );
1390 push @input, {file => $prefilename, parser => $db};
1391 push @input, {file => $filename, parser => $db};
1392 my ( $source_schema, $source_db, $target_schema, $target_db ) = map {
1393 my $file = $_->{'file'};
1394 my $parser = $_->{'parser'};
1396 my $t = SQL::Translator->new;
1399 $t->parser( $parser ) or die $t->error;
1400 my $out = $t->translate( $file ) or die $t->error;
1401 my $schema = $t->schema;
1402 unless ( $schema->name ) {
1403 $schema->name( $file );
1408 my $diff = SQL::Translator::Diff::schema_diff($source_schema, $db,
1409 $target_schema, $db,
1412 my $difffile = $schema->ddl_filename($db, $dir, $version, $preversion);
1413 print STDERR "Diff: $difffile: $db, $dir, $version, $preversion \n";
1416 warn("$difffile already exists, skipping");
1419 if(!open $file, ">$difffile")
1421 $self->throw_exception("Can't write to $difffile ($!)");
1430 sub configure_sqlt() {
1433 my $db = shift || $self->sqlt_type;
1434 if ($db eq 'PostgreSQL') {
1435 $tr->quote_table_names(0);
1436 $tr->quote_field_names(0);
1441 =head2 deployment_statements
1445 =item Arguments: $schema, $type, $version, $directory, $sqlt_args
1449 Returns the statements used by L</deploy> and L<DBIx::Class::Schema/deploy>.
1450 The database driver name is given by C<$type>, though the value from
1451 L</sqlt_type> is used if it is not specified.
1453 C<$directory> is used to return statements from files in a previously created
1454 L</create_ddl_dir> directory and is optional. The filenames are constructed
1455 from L<DBIx::Class::Schema/ddl_filename>, the schema name and the C<$version>.
1457 If no C<$directory> is specified then the statements are constructed on the
1458 fly using L<SQL::Translator> and C<$version> is ignored.
1460 See L<SQL::Translator/METHODS> for a list of values for C<$sqlt_args>.
1464 sub deployment_statements {
1465 my ($self, $schema, $type, $version, $dir, $sqltargs) = @_;
1466 # Need to be connected to get the correct sqlt_type
1467 $self->ensure_connected() unless $type;
1468 $type ||= $self->sqlt_type;
1469 $version ||= $schema->VERSION || '1.x';
1471 my $filename = $schema->ddl_filename($type, $dir, $version);
1475 open($file, "<$filename")
1476 or $self->throw_exception("Can't open $filename ($!)");
1479 return join('', @rows);
1482 $self->throw_exception(q{Can't deploy without SQL::Translator 0.08: '}
1483 . $self->_check_sqlt_message . q{'})
1484 if !$self->_check_sqlt_version;
1486 require SQL::Translator::Parser::DBIx::Class;
1487 eval qq{use SQL::Translator::Producer::${type}};
1488 $self->throw_exception($@) if $@;
1490 # sources needs to be a parser arg, but for simplicty allow at top level
1492 $sqltargs->{parser_args}{sources} = delete $sqltargs->{sources}
1493 if exists $sqltargs->{sources};
1495 my $tr = SQL::Translator->new(%$sqltargs);
1496 SQL::Translator::Parser::DBIx::Class::parse( $tr, $schema );
1497 return "SQL::Translator::Producer::${type}"->can('produce')->($tr);
1504 my ($self, $schema, $type, $sqltargs, $dir) = @_;
1505 foreach my $statement ( $self->deployment_statements($schema, $type, undef, $dir, { no_comments => 1, %{ $sqltargs || {} } } ) ) {
1506 foreach my $line ( split(";\n", $statement)) {
1507 next if($line =~ /^--/);
1509 # next if($line =~ /^DROP/m);
1510 next if($line =~ /^BEGIN TRANSACTION/m);
1511 next if($line =~ /^COMMIT/m);
1512 next if $line =~ /^\s+$/; # skip whitespace only
1513 $self->_query_start($line);
1515 $self->dbh->do($line); # shouldn't be using ->dbh ?
1518 warn qq{$@ (running "${line}")};
1520 $self->_query_end($line);
1525 =head2 datetime_parser
1527 Returns the datetime parser class
1531 sub datetime_parser {
1533 return $self->{datetime_parser} ||= do {
1534 $self->ensure_connected;
1535 $self->build_datetime_parser(@_);
1539 =head2 datetime_parser_type
1541 Defines (returns) the datetime parser class - currently hardwired to
1542 L<DateTime::Format::MySQL>
1546 sub datetime_parser_type { "DateTime::Format::MySQL"; }
1548 =head2 build_datetime_parser
1550 See L</datetime_parser>
1554 sub build_datetime_parser {
1556 my $type = $self->datetime_parser_type(@_);
1558 $self->throw_exception("Couldn't load ${type}: $@") if $@;
1563 my $_check_sqlt_version; # private
1564 my $_check_sqlt_message; # private
1565 sub _check_sqlt_version {
1566 return $_check_sqlt_version if defined $_check_sqlt_version;
1567 eval 'use SQL::Translator 0.08';
1568 $_check_sqlt_message = $@ ? $@ : '';
1569 $_check_sqlt_version = $@ ? 0 : 1;
1572 sub _check_sqlt_message {
1573 _check_sqlt_version if !defined $_check_sqlt_message;
1574 $_check_sqlt_message;
1580 return if !$self->_dbh;
1589 The module defines a set of methods within the DBIC::SQL::Abstract
1590 namespace. These build on L<SQL::Abstract::Limit> to provide the
1591 SQL query functions.
1593 The following methods are extended:-
1607 See L</connect_info> for details.
1608 For setting, this method is deprecated in favor of L</connect_info>.
1612 See L</connect_info> for details.
1613 For setting, this method is deprecated in favor of L</connect_info>.
1617 See L</connect_info> for details.
1618 For setting, this method is deprecated in favor of L</connect_info>.
1624 Matt S. Trout <mst@shadowcatsystems.co.uk>
1626 Andy Grundman <andy@hybridized.org>
1630 You may distribute this code under the same terms as Perl itself.