Added docs for quote_char, name_sep and offset RS attrib.
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI.pm
CommitLineData
8b445e33 1package DBIx::Class::Storage::DBI;
2
a62cf8d4 3use base 'DBIx::Class::Storage';
4
20a2c954 5use strict;
6use warnings;
8b445e33 7use DBI;
aeaf3ce2 8use SQL::Abstract::Limit;
28927b50 9use DBIx::Class::Storage::DBI::Cursor;
92b858c9 10use IO::File;
701da8c4 11use Carp::Clan qw/DBIx::Class/;
8b445e33 12
bd7efd39 13BEGIN {
14
cb5f2eea 15package DBIC::SQL::Abstract; # Would merge upstream, but nate doesn't reply :(
bd7efd39 16
17use base qw/SQL::Abstract::Limit/;
18
54540863 19sub select {
20 my ($self, $table, $fields, $where, $order, @rest) = @_;
6346a152 21 $table = $self->_quote($table) unless ref($table);
54540863 22 @rest = (-1) unless defined $rest[0];
0823196c 23 die "LIMIT 0 Does Not Compute" if $rest[0] == 0;
24 # and anyway, SQL::Abstract::Limit will cause a barf if we don't first
8839560b 25 local $self->{having_bind} = [];
bc0c9800 26 my ($sql, @ret) = $self->SUPER::select(
27 $table, $self->_recurse_fields($fields), $where, $order, @rest
28 );
8839560b 29 return wantarray ? ($sql, @ret, @{$self->{having_bind}}) : $sql;
54540863 30}
31
6346a152 32sub insert {
33 my $self = shift;
34 my $table = shift;
35 $table = $self->_quote($table) unless ref($table);
36 $self->SUPER::insert($table, @_);
37}
38
39sub update {
40 my $self = shift;
41 my $table = shift;
42 $table = $self->_quote($table) unless ref($table);
43 $self->SUPER::update($table, @_);
44}
45
46sub delete {
47 my $self = shift;
48 my $table = shift;
49 $table = $self->_quote($table) unless ref($table);
50 $self->SUPER::delete($table, @_);
51}
52
54540863 53sub _emulate_limit {
54 my $self = shift;
55 if ($_[3] == -1) {
56 return $_[1].$self->_order_by($_[2]);
57 } else {
58 return $self->SUPER::_emulate_limit(@_);
59 }
60}
61
62sub _recurse_fields {
63 my ($self, $fields) = @_;
64 my $ref = ref $fields;
65 return $self->_quote($fields) unless $ref;
66 return $$fields if $ref eq 'SCALAR';
67
68 if ($ref eq 'ARRAY') {
69 return join(', ', map { $self->_recurse_fields($_) } @$fields);
70 } elsif ($ref eq 'HASH') {
71 foreach my $func (keys %$fields) {
72 return $self->_sqlcase($func)
73 .'( '.$self->_recurse_fields($fields->{$func}).' )';
74 }
75 }
76}
77
78sub _order_by {
79 my $self = shift;
80 my $ret = '';
8839560b 81 my @extra;
54540863 82 if (ref $_[0] eq 'HASH') {
83 if (defined $_[0]->{group_by}) {
84 $ret = $self->_sqlcase(' group by ')
85 .$self->_recurse_fields($_[0]->{group_by});
86 }
8839560b 87 if (defined $_[0]->{having}) {
88 my $frag;
89 ($frag, @extra) = $self->_recurse_where($_[0]->{having});
90 push(@{$self->{having_bind}}, @extra);
91 $ret .= $self->_sqlcase(' having ').$frag;
92 }
54540863 93 if (defined $_[0]->{order_by}) {
94 $ret .= $self->SUPER::_order_by($_[0]->{order_by});
95 }
e535069e 96 } elsif(ref $_[0] eq 'SCALAR') {
97 $ret = $self->_sqlcase(' order by ').${ $_[0] };
54540863 98 } else {
99 $ret = $self->SUPER::_order_by(@_);
100 }
101 return $ret;
102}
103
f48dd03f 104sub _order_directions {
105 my ($self, $order) = @_;
106 $order = $order->{order_by} if ref $order eq 'HASH';
107 return $self->SUPER::_order_directions($order);
108}
109
2a816814 110sub _table {
bd7efd39 111 my ($self, $from) = @_;
112 if (ref $from eq 'ARRAY') {
113 return $self->_recurse_from(@$from);
114 } elsif (ref $from eq 'HASH') {
115 return $self->_make_as($from);
116 } else {
6346a152 117 return $from; # would love to quote here but _table ends up getting called
118 # twice during an ->select without a limit clause due to
119 # the way S::A::Limit->select works. should maybe consider
120 # bypassing this and doing S::A::select($self, ...) in
121 # our select method above. meantime, quoting shims have
122 # been added to select/insert/update/delete here
bd7efd39 123 }
124}
125
126sub _recurse_from {
127 my ($self, $from, @join) = @_;
128 my @sqlf;
129 push(@sqlf, $self->_make_as($from));
130 foreach my $j (@join) {
131 my ($to, $on) = @$j;
73856587 132
54540863 133 # check whether a join type exists
134 my $join_clause = '';
135 if (ref($to) eq 'HASH' and exists($to->{-join_type})) {
136 $join_clause = ' '.uc($to->{-join_type}).' JOIN ';
137 } else {
138 $join_clause = ' JOIN ';
139 }
73856587 140 push(@sqlf, $join_clause);
141
bd7efd39 142 if (ref $to eq 'ARRAY') {
143 push(@sqlf, '(', $self->_recurse_from(@$to), ')');
144 } else {
96cdbbab 145 push(@sqlf, $self->_make_as($to));
bd7efd39 146 }
147 push(@sqlf, ' ON ', $self->_join_condition($on));
148 }
149 return join('', @sqlf);
150}
151
152sub _make_as {
153 my ($self, $from) = @_;
54540863 154 return join(' ', map { (ref $_ eq 'SCALAR' ? $$_ : $self->_quote($_)) }
bc0c9800 155 reverse each %{$self->_skip_options($from)});
73856587 156}
157
158sub _skip_options {
54540863 159 my ($self, $hash) = @_;
160 my $clean_hash = {};
161 $clean_hash->{$_} = $hash->{$_}
162 for grep {!/^-/} keys %$hash;
163 return $clean_hash;
bd7efd39 164}
165
166sub _join_condition {
167 my ($self, $cond) = @_;
5efe4c79 168 if (ref $cond eq 'HASH') {
169 my %j;
bc0c9800 170 for (keys %$cond) {
171 my $x = '= '.$self->_quote($cond->{$_}); $j{$_} = \$x;
172 };
5efe4c79 173 return $self->_recurse_where(\%j);
174 } elsif (ref $cond eq 'ARRAY') {
175 return join(' OR ', map { $self->_join_condition($_) } @$cond);
176 } else {
177 die "Can't handle this yet!";
178 }
bd7efd39 179}
180
2a816814 181sub _quote {
182 my ($self, $label) = @_;
183 return '' unless defined $label;
3b24f6ea 184 return "*" if $label eq '*';
41728a6e 185 return $label unless $self->{quote_char};
3b24f6ea 186 if(ref $self->{quote_char} eq "ARRAY"){
187 return $self->{quote_char}->[0] . $label . $self->{quote_char}->[1]
188 if !defined $self->{name_sep};
189 my $sep = $self->{name_sep};
190 return join($self->{name_sep},
191 map { $self->{quote_char}->[0] . $_ . $self->{quote_char}->[1] }
192 split(/\Q$sep\E/,$label));
193 }
2a816814 194 return $self->SUPER::_quote($label);
195}
196
f66596f9 197sub _RowNum {
198 my $self = shift;
199 my $c;
200 $_[0] =~ s/SELECT (.*?) FROM/
201 'SELECT '.join(', ', map { $_.' AS col'.++$c } split(', ', $1)).' FROM'/e;
202 $self->SUPER::_RowNum(@_);
203}
204
7be93b07 205# Accessor for setting limit dialect. This is useful
206# for JDBC-bridge among others where the remote SQL-dialect cannot
207# be determined by the name of the driver alone.
208#
209sub limit_dialect {
210 my $self = shift;
211 $self->{limit_dialect} = shift if @_;
212 return $self->{limit_dialect};
213}
214
2437a1e3 215sub quote_char {
216 my $self = shift;
217 $self->{quote_char} = shift if @_;
218 return $self->{quote_char};
219}
220
221sub name_sep {
222 my $self = shift;
223 $self->{name_sep} = shift if @_;
224 return $self->{name_sep};
225}
226
227
228
229
486ad69b 230package DBIx::Class::Storage::DBI::DebugCallback;
231
232sub print {
233 my ($self, $string) = @_;
234 $string =~ m/^(\w+)/;
235 ${$self}->($1, $string);
236}
237
bd7efd39 238} # End of BEGIN block
239
8b445e33 240use base qw/DBIx::Class/;
241
1f692767 242__PACKAGE__->load_components(qw/AccessorGroup/);
8b445e33 243
223b8fe3 244__PACKAGE__->mk_group_accessors('simple' =>
1346e22d 245 qw/connect_info _dbh _sql_maker _conn_pid _conn_tid debug debugfh
246 cursor on_connect_do transaction_depth/);
8091aa91 247
8b445e33 248sub new {
223b8fe3 249 my $new = bless({}, ref $_[0] || $_[0]);
28927b50 250 $new->cursor("DBIx::Class::Storage::DBI::Cursor");
d79f59b9 251 $new->transaction_depth(0);
5e65c358 252 if (defined($ENV{DBIX_CLASS_STORAGE_DBI_DEBUG}) &&
253 ($ENV{DBIX_CLASS_STORAGE_DBI_DEBUG} =~ /=(.+)$/)) {
bc0c9800 254 $new->debugfh(IO::File->new($1, 'w'))
255 or $new->throw_exception("Cannot open trace file $1");
92b858c9 256 } else {
257 $new->debugfh(IO::File->new('>&STDERR'));
258 }
28927b50 259 $new->debug(1) if $ENV{DBIX_CLASS_STORAGE_DBI_DEBUG};
223b8fe3 260 return $new;
8b445e33 261}
262
1c339d71 263sub throw_exception {
264 my ($self, $msg) = @_;
3b042bcb 265 croak($msg);
1c339d71 266}
267
75d07914 268=head1 NAME
8b445e33 269
270DBIx::Class::Storage::DBI - DBI storage handler
271
272=head1 SYNOPSIS
273
274=head1 DESCRIPTION
275
276This class represents the connection to the database
277
278=head1 METHODS
279
8b445e33 280=cut
281
d7c4c15c 282=head2 on_connect_do
283
284Executes the sql statements given as a listref on every db connect.
285
6789ebe3 286=head2 quote_char
287
288Specifies what characters to use to quote table and column names. If
289you use this you will want to specify L<name_sep> as well.
290
291quote_char expectes either a single character, in which case is it is placed
292on either side of the table/column, or an array of length 2 in which case the
293table/column name is placed between the elements.
294
295For example under MySQL you'd use C<quote_char('`')>, and user SQL Server you'd
296use C<quote_char(qw/[ ]/)>.
297
298=head2 name_sep
299
300This only needs to be used in conjunction with L<quote_char>, and is used to
301specify the charecter that seperates elements (schemas, tables, columns) from
302each other. In most cases this is simply a C<.>.
303
92b858c9 304=head2 debug
305
306Causes SQL trace information to be emitted on C<debugfh> filehandle
307(or C<STDERR> if C<debugfh> has not specifically been set).
308
309=head2 debugfh
310
311Sets or retrieves the filehandle used for trace/debug output. This
312should be an IO::Handle compatible object (only the C<print> method is
313used). Initially set to be STDERR - although see information on the
314L<DBIX_CLASS_STORAGE_DBI_DEBUG> environment variable.
315
486ad69b 316=head2 debugcb
317
318Sets a callback to be executed each time a statement is run; takes a sub
319reference. Overrides debugfh. Callback is executed as $sub->($op, $info)
320where $op is SELECT/INSERT/UPDATE/DELETE and $info is what would normally
321be printed.
322
d7c4c15c 323=cut
324
486ad69b 325sub debugcb {
326 my ($self, $cb) = @_;
327 my $cb_obj = bless(\$cb, 'DBIx::Class::Storage::DBI::DebugCallback');
328 $self->debugfh($cb_obj);
329}
330
412db1f4 331sub disconnect {
332 my ($self) = @_;
333
92925617 334 if( $self->connected ) {
335 $self->_dbh->rollback unless $self->_dbh->{AutoCommit};
336 $self->_dbh->disconnect;
337 $self->_dbh(undef);
338 }
412db1f4 339}
340
341sub connected {
8b445e33 342 my ($self) = @_;
412db1f4 343
1346e22d 344 if(my $dbh = $self->_dbh) {
345 if(defined $self->_conn_tid && $self->_conn_tid != threads->tid) {
346 $self->_sql_maker(undef);
347 return $self->_dbh(undef);
348 }
349 elsif($self->_conn_pid != $$) {
350 $self->_dbh->{InactiveDestroy} = 1;
351 $self->_sql_maker(undef);
352 return $self->_dbh(undef)
353 }
354 return ($dbh->FETCH('Active') && $dbh->ping);
355 }
356
357 return 0;
412db1f4 358}
359
360sub ensure_connected {
361 my ($self) = @_;
362
363 unless ($self->connected) {
8b445e33 364 $self->_populate_dbh;
365 }
412db1f4 366}
367
c235bbae 368=head2 dbh
369
370Returns the dbh - a data base handle of class L<DBI>.
371
372=cut
373
412db1f4 374sub dbh {
375 my ($self) = @_;
376
377 $self->ensure_connected;
8b445e33 378 return $self->_dbh;
379}
380
48c69e7c 381sub sql_maker {
382 my ($self) = @_;
fdc1c3d0 383 unless ($self->_sql_maker) {
bd7efd39 384 $self->_sql_maker(new DBIC::SQL::Abstract( limit_dialect => $self->dbh ));
48c69e7c 385 }
386 return $self->_sql_maker;
387}
388
8b445e33 389sub _populate_dbh {
390 my ($self) = @_;
391 my @info = @{$self->connect_info || []};
392 $self->_dbh($self->_connect(@info));
843f8ecd 393 my $driver = $self->_dbh->{Driver}->{Name};
34470972 394 eval "require DBIx::Class::Storage::DBI::${driver}";
395 unless ($@) {
843f8ecd 396 bless $self, "DBIx::Class::Storage::DBI::${driver}";
397 }
d7c4c15c 398 # if on-connect sql statements are given execute them
399 foreach my $sql_statement (@{$self->on_connect_do || []}) {
400 $self->_dbh->do($sql_statement);
401 }
5ef3e508 402
1346e22d 403 $self->_conn_pid($$);
404 $self->_conn_tid(threads->tid) if $INC{'threads.pm'};
8b445e33 405}
406
407sub _connect {
408 my ($self, @info) = @_;
5ef3e508 409
9d31f7dc 410 $self->throw_exception("You failed to provide any connection info")
411 if !@info;
412
90ec6cad 413 my ($old_connect_via, $dbh);
414
5ef3e508 415 if ($INC{'Apache/DBI.pm'} && $ENV{MOD_PERL}) {
90ec6cad 416 $old_connect_via = $DBI::connect_via;
5ef3e508 417 $DBI::connect_via = 'connect';
5ef3e508 418 }
419
75db246c 420 eval {
421 if(ref $info[0] eq 'CODE') {
422 $dbh = &{$info[0]};
423 }
424 else {
425 $dbh = DBI->connect(@info);
426 }
427 };
90ec6cad 428
429 $DBI::connect_via = $old_connect_via if $old_connect_via;
430
75db246c 431 if (!$dbh || $@) {
432 $self->throw_exception("DBI Connection failed: " . ($@ || $DBI::errstr));
433 }
90ec6cad 434
e571e823 435 $dbh;
8b445e33 436}
437
8091aa91 438=head2 txn_begin
8b445e33 439
8091aa91 440Calls begin_work on the current dbh.
8b445e33 441
181a28f4 442See L<DBIx::Class::Schema> for the txn_do() method, which allows for
443an entire code block to be executed transactionally.
444
8b445e33 445=cut
446
8091aa91 447sub txn_begin {
d79f59b9 448 my $self = shift;
a32e8402 449 if ($self->{transaction_depth}++ == 0) {
450 my $dbh = $self->dbh;
451 if ($dbh->{AutoCommit}) {
452 $self->debugfh->print("BEGIN WORK\n")
453 if ($self->debug);
454 $dbh->begin_work;
455 }
986e4fca 456 }
8091aa91 457}
8b445e33 458
8091aa91 459=head2 txn_commit
8b445e33 460
8091aa91 461Issues a commit against the current dbh.
8b445e33 462
8091aa91 463=cut
464
465sub txn_commit {
d79f59b9 466 my $self = shift;
7c5a8b60 467 my $dbh = $self->dbh;
d79f59b9 468 if ($self->{transaction_depth} == 0) {
a32e8402 469 unless ($dbh->{AutoCommit}) {
986e4fca 470 $self->debugfh->print("COMMIT\n")
471 if ($self->debug);
a32e8402 472 $dbh->commit;
986e4fca 473 }
8091aa91 474 }
475 else {
986e4fca 476 if (--$self->{transaction_depth} == 0) {
477 $self->debugfh->print("COMMIT\n")
478 if ($self->debug);
7c5a8b60 479 $dbh->commit;
986e4fca 480 }
8091aa91 481 }
482}
483
484=head2 txn_rollback
485
181a28f4 486Issues a rollback against the current dbh. A nested rollback will
487throw a L<DBIx::Class::Storage::NESTED_ROLLBACK_EXCEPTION> exception,
488which allows the rollback to propagate to the outermost transaction.
8b445e33 489
490=cut
491
8091aa91 492sub txn_rollback {
d79f59b9 493 my $self = shift;
a62cf8d4 494
495 eval {
7c5a8b60 496 my $dbh = $self->dbh;
a62cf8d4 497 if ($self->{transaction_depth} == 0) {
a32e8402 498 unless ($dbh->{AutoCommit}) {
986e4fca 499 $self->debugfh->print("ROLLBACK\n")
500 if ($self->debug);
a32e8402 501 $dbh->rollback;
986e4fca 502 }
a62cf8d4 503 }
504 else {
986e4fca 505 if (--$self->{transaction_depth} == 0) {
506 $self->debugfh->print("ROLLBACK\n")
507 if ($self->debug);
7c5a8b60 508 $dbh->rollback;
986e4fca 509 }
510 else {
1346e22d 511 die DBIx::Class::Storage::NESTED_ROLLBACK_EXCEPTION->new;
986e4fca 512 }
a62cf8d4 513 }
514 };
515
516 if ($@) {
517 my $error = $@;
518 my $exception_class = "DBIx::Class::Storage::NESTED_ROLLBACK_EXCEPTION";
519 $error =~ /$exception_class/ and $self->throw_exception($error);
520 $self->{transaction_depth} = 0; # ensure that a failed rollback
521 $self->throw_exception($error); # resets the transaction depth
8091aa91 522 }
523}
8b445e33 524
223b8fe3 525sub _execute {
526 my ($self, $op, $extra_bind, $ident, @args) = @_;
527 my ($sql, @bind) = $self->sql_maker->$op($ident, @args);
944f30bf 528 unshift(@bind, @$extra_bind) if $extra_bind;
f59ffc79 529 if ($self->debug) {
ec0ff6f6 530 my $bind_str = join(', ', map {
531 defined $_ ? qq{`$_'} : q{`NULL'}
532 } @bind);
533 $self->debugfh->print("$sql ($bind_str)\n");
f59ffc79 534 }
75db246c 535 my $sth = eval { $self->sth($sql,$op) };
536
537 if (!$sth || $@) {
ec0ff6f6 538 $self->throw_exception(
539 'no sth generated via sql (' . ($@ || $self->_dbh->errstr) . "): $sql"
540 );
75db246c 541 }
438adc0e 542 @bind = map { ref $_ ? ''.$_ : $_ } @bind; # stringify args
ec0ff6f6 543 my $rv = eval { $sth->execute(@bind) };
544 if ($@ || !$rv) {
545 my $bind_str = join(', ', map {
546 defined $_ ? qq{`$_'} : q{`NULL'}
547 } @bind);
548 $self->throw_exception(
549 "Error executing '$sql' ($bind_str): ".($@ || $sth->errstr)
550 );
701da8c4 551 }
223b8fe3 552 return (wantarray ? ($rv, $sth, @bind) : $rv);
553}
554
8b445e33 555sub insert {
556 my ($self, $ident, $to_insert) = @_;
bc0c9800 557 $self->throw_exception(
558 "Couldn't insert ".join(', ',
559 map "$_ => $to_insert->{$_}", keys %$to_insert
560 )." into ${ident}"
561 ) unless ($self->_execute('insert' => [], $ident, $to_insert));
8b445e33 562 return $to_insert;
563}
564
565sub update {
223b8fe3 566 return shift->_execute('update' => [], @_);
8b445e33 567}
568
569sub delete {
223b8fe3 570 return shift->_execute('delete' => [], @_);
8b445e33 571}
572
de705b51 573sub _select {
8b445e33 574 my ($self, $ident, $select, $condition, $attrs) = @_;
223b8fe3 575 my $order = $attrs->{order_by};
576 if (ref $condition eq 'SCALAR') {
577 $order = $1 if $$condition =~ s/ORDER BY (.*)$//i;
578 }
8839560b 579 if (exists $attrs->{group_by} || $attrs->{having}) {
bc0c9800 580 $order = {
581 group_by => $attrs->{group_by},
582 having => $attrs->{having},
583 ($order ? (order_by => $order) : ())
584 };
54540863 585 }
5c91499f 586 my @args = ('select', $attrs->{bind}, $ident, $select, $condition, $order);
9229f20a 587 if ($attrs->{software_limit} ||
588 $self->sql_maker->_default_limit_syntax eq "GenericSubQ") {
589 $attrs->{software_limit} = 1;
5c91499f 590 } else {
0823196c 591 $self->throw_exception("rows attribute must be positive if present")
592 if (defined($attrs->{rows}) && !($attrs->{rows} > 0));
5c91499f 593 push @args, $attrs->{rows}, $attrs->{offset};
594 }
de705b51 595 return $self->_execute(@args);
596}
597
598sub select {
599 my $self = shift;
600 my ($ident, $select, $condition, $attrs) = @_;
cb5f2eea 601 return $self->cursor->new($self, \@_, $attrs);
8b445e33 602}
603
6157db4f 604# Need to call finish() to work round broken DBDs
605
1a14aa3f 606sub select_single {
de705b51 607 my $self = shift;
608 my ($rv, $sth, @bind) = $self->_select(@_);
6157db4f 609 my @row = $sth->fetchrow_array;
610 $sth->finish();
611 return @row;
1a14aa3f 612}
613
8b445e33 614sub sth {
cb5f2eea 615 my ($self, $sql) = @_;
91fa659e 616 # 3 is the if_active parameter which avoids active sth re-use
617 return $self->dbh->prepare_cached($sql, {}, 3);
8b445e33 618}
619
a953d8d9 620=head2 columns_info_for
621
622Returns database type info for a given table columns.
623
624=cut
625
626sub columns_info_for {
0d67fe74 627 my ($self, $table) = @_;
bfe10d87 628
a32e8402 629 my $dbh = $self->dbh;
630
631 if ($dbh->can('column_info')) {
a953d8d9 632 my %result;
a32e8402 633 my $old_raise_err = $dbh->{RaiseError};
634 my $old_print_err = $dbh->{PrintError};
635 $dbh->{RaiseError} = 1;
636 $dbh->{PrintError} = 0;
0d67fe74 637 eval {
a32e8402 638 my $sth = $dbh->column_info( undef, undef, $table, '%' );
0d67fe74 639 $sth->execute();
640 while ( my $info = $sth->fetchrow_hashref() ){
bfe10d87 641 my %column_info;
0d67fe74 642 $column_info{data_type} = $info->{TYPE_NAME};
643 $column_info{size} = $info->{COLUMN_SIZE};
644 $column_info{is_nullable} = $info->{NULLABLE} ? 1 : 0;
645 $column_info{default_value} = $info->{COLUMN_DEF};
646
647 $result{$info->{COLUMN_NAME}} = \%column_info;
648 }
649 };
a32e8402 650 $dbh->{RaiseError} = $old_raise_err;
651 $dbh->{PrintError} = $old_print_err;
0d67fe74 652 return \%result if !$@;
653 }
654
655 my %result;
a32e8402 656 my $sth = $dbh->prepare("SELECT * FROM $table WHERE 1=0");
0d67fe74 657 $sth->execute;
658 my @columns = @{$sth->{NAME_lc}};
659 for my $i ( 0 .. $#columns ){
660 my %column_info;
661 my $type_num = $sth->{TYPE}->[$i];
662 my $type_name;
a32e8402 663 if(defined $type_num && $dbh->can('type_info')) {
664 my $type_info = $dbh->type_info($type_num);
0d67fe74 665 $type_name = $type_info->{TYPE_NAME} if $type_info;
a953d8d9 666 }
0d67fe74 667 $column_info{data_type} = $type_name ? $type_name : $type_num;
668 $column_info{size} = $sth->{PRECISION}->[$i];
669 $column_info{is_nullable} = $sth->{NULLABLE}->[$i] ? 1 : 0;
670
671 if ($column_info{data_type} =~ m/^(.*?)\((.*?)\)$/) {
672 $column_info{data_type} = $1;
673 $column_info{size} = $2;
674 }
675
676 $result{$columns[$i]} = \%column_info;
677 }
bfe10d87 678
0d67fe74 679 return \%result;
a953d8d9 680}
681
843f8ecd 682sub last_insert_id {
683 my ($self, $row) = @_;
684
685 return $self->dbh->func('last_insert_rowid');
686
687}
688
90ec6cad 689sub sqlt_type { shift->dbh->{Driver}->{Name} }
1c339d71 690
691sub deployment_statements {
cb561d1a 692 my ($self, $schema, $type, $sqltargs) = @_;
1c339d71 693 $type ||= $self->sqlt_type;
694 eval "use SQL::Translator";
695 $self->throw_exception("Can't deploy without SQL::Translator: $@") if $@;
696 eval "use SQL::Translator::Parser::DBIx::Class;";
75d07914 697 $self->throw_exception($@) if $@;
1c339d71 698 eval "use SQL::Translator::Producer::${type};";
699 $self->throw_exception($@) if $@;
cb561d1a 700 my $tr = SQL::Translator->new(%$sqltargs);
1c339d71 701 SQL::Translator::Parser::DBIx::Class::parse( $tr, $schema );
702 return "SQL::Translator::Producer::${type}"->can('produce')->($tr);
703}
843f8ecd 704
1c339d71 705sub deploy {
cb561d1a 706 my ($self, $schema, $type, $sqltargs) = @_;
e4fe9ba3 707 foreach my $statement ( $self->deployment_statements($schema, $type, $sqltargs) ) {
708 for ( split(";\n", $statement)) {
709 $self->debugfh->print("$_\n") if $self->debug;
710 $self->dbh->do($_) or warn "SQL was:\n $_";
711 }
75d07914 712 }
1c339d71 713}
843f8ecd 714
92925617 715sub DESTROY { shift->disconnect }
716
8b445e33 7171;
718
92b858c9 719=head1 ENVIRONMENT VARIABLES
720
721=head2 DBIX_CLASS_STORAGE_DBI_DEBUG
722
723If C<DBIX_CLASS_STORAGE_DBI_DEBUG> is set then SQL trace information
724is produced (as when the L<debug> method is set).
725
726If the value is of the form C<1=/path/name> then the trace output is
727written to the file C</path/name>.
728
d1cceec4 729This environment variable is checked when the storage object is first
730created (when you call connect on your schema). So, run-time changes
731to this environment variable will not take effect unless you also
732re-connect on your schema.
733
8b445e33 734=head1 AUTHORS
735
daec44b8 736Matt S. Trout <mst@shadowcatsystems.co.uk>
8b445e33 737
9f19b1d6 738Andy Grundman <andy@hybridized.org>
739
8b445e33 740=head1 LICENSE
741
742You may distribute this code under the same terms as Perl itself.
743
744=cut
745