Cleaned up Storage::DBI to remove redundancy
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI.pm
CommitLineData
8b445e33 1package DBIx::Class::Storage::DBI;
2
20a2c954 3use strict;
4use warnings;
8b445e33 5use DBI;
aeaf3ce2 6use SQL::Abstract::Limit;
28927b50 7use DBIx::Class::Storage::DBI::Cursor;
8b445e33 8
9use base qw/DBIx::Class/;
10
438adc0e 11__PACKAGE__->load_components(qw/Exception AccessorGroup/);
8b445e33 12
223b8fe3 13__PACKAGE__->mk_group_accessors('simple' =>
48c69e7c 14 qw/connect_info _dbh _sql_maker debug cursor/);
8b445e33 15
16sub new {
223b8fe3 17 my $new = bless({}, ref $_[0] || $_[0]);
28927b50 18 $new->cursor("DBIx::Class::Storage::DBI::Cursor");
19 $new->debug(1) if $ENV{DBIX_CLASS_STORAGE_DBI_DEBUG};
223b8fe3 20 return $new;
8b445e33 21}
22
23sub get_simple {
24 my ($self, $get) = @_;
25 return $self->{$get};
26}
27
28sub set_simple {
29 my ($self, $set, $val) = @_;
30 return $self->{$set} = $val;
31}
32
33=head1 NAME
34
35DBIx::Class::Storage::DBI - DBI storage handler
36
37=head1 SYNOPSIS
38
39=head1 DESCRIPTION
40
41This class represents the connection to the database
42
43=head1 METHODS
44
45=over 4
46
47=cut
48
49sub dbh {
50 my ($self) = @_;
51 my $dbh;
52 unless (($dbh = $self->_dbh) && $dbh->FETCH('Active') && $dbh->ping) {
53 $self->_populate_dbh;
54 }
55 return $self->_dbh;
56}
57
48c69e7c 58sub sql_maker {
59 my ($self) = @_;
fdc1c3d0 60 unless ($self->_sql_maker) {
48c69e7c 61 $self->_sql_maker(new SQL::Abstract::Limit( limit_dialect => $self->dbh ));
62 }
63 return $self->_sql_maker;
64}
65
8b445e33 66sub _populate_dbh {
67 my ($self) = @_;
68 my @info = @{$self->connect_info || []};
69 $self->_dbh($self->_connect(@info));
70}
71
72sub _connect {
73 my ($self, @info) = @_;
74 return DBI->connect(@info);
75}
76
77=item commit
78
79 $class->commit;
80
81Issues a commit again the current dbh
82
83=cut
84
85sub commit { $_[0]->dbh->commit; }
86
87=item rollback
88
89 $class->rollback;
90
91Issues a rollback again the current dbh
92
93=cut
94
95sub rollback { $_[0]->dbh->rollback; }
96
223b8fe3 97sub _execute {
98 my ($self, $op, $extra_bind, $ident, @args) = @_;
99 my ($sql, @bind) = $self->sql_maker->$op($ident, @args);
944f30bf 100 unshift(@bind, @$extra_bind) if $extra_bind;
223b8fe3 101 warn "$sql: @bind" if $self->debug;
102 my $sth = $self->sth($sql);
438adc0e 103 @bind = map { ref $_ ? ''.$_ : $_ } @bind; # stringify args
104 my $rv = $sth->execute(@bind);
223b8fe3 105 return (wantarray ? ($rv, $sth, @bind) : $rv);
106}
107
8b445e33 108sub insert {
109 my ($self, $ident, $to_insert) = @_;
20a2c954 110 $self->throw( "Couldn't insert ".join(', ', map "$_ => $to_insert->{$_}", keys %$to_insert)." into ${ident}" )
223b8fe3 111 unless ($self->_execute('insert' => [], $ident, $to_insert) > 0);
8b445e33 112 return $to_insert;
113}
114
115sub update {
223b8fe3 116 return shift->_execute('update' => [], @_);
8b445e33 117}
118
119sub delete {
223b8fe3 120 return shift->_execute('delete' => [], @_);
8b445e33 121}
122
de705b51 123sub _select {
8b445e33 124 my ($self, $ident, $select, $condition, $attrs) = @_;
223b8fe3 125 my $order = $attrs->{order_by};
126 if (ref $condition eq 'SCALAR') {
127 $order = $1 if $$condition =~ s/ORDER BY (.*)$//i;
128 }
de705b51 129 $ident = $self->_build_from($ident) if ref $ident;
5c91499f 130 my @args = ('select', $attrs->{bind}, $ident, $select, $condition, $order);
131 if ($self->sql_maker->_default_limit_syntax eq "GenericSubQ") {
132 $attrs->{software_limit} = 1;
133 } else {
134 push @args, $attrs->{rows}, $attrs->{offset};
135 }
de705b51 136 return $self->_execute(@args);
137}
138
139sub select {
140 my $self = shift;
141 my ($ident, $select, $condition, $attrs) = @_;
142 my ($rv, $sth, @bind) = $self->_select(@_);
223b8fe3 143 return $self->cursor->new($sth, \@bind, $attrs);
8b445e33 144}
145
1a14aa3f 146sub select_single {
de705b51 147 my $self = shift;
148 my ($rv, $sth, @bind) = $self->_select(@_);
1a14aa3f 149 return $sth->fetchrow_array;
150}
151
8b445e33 152sub sth {
153 shift->dbh->prepare(@_);
154}
155
1561;
157
158=back
159
160=head1 AUTHORS
161
daec44b8 162Matt S. Trout <mst@shadowcatsystems.co.uk>
8b445e33 163
9f19b1d6 164Andy Grundman <andy@hybridized.org>
165
8b445e33 166=head1 LICENSE
167
168You may distribute this code under the same terms as Perl itself.
169
170=cut
171