7d8018798f5a4afef6b8c97fbc5a572c50abf25a
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / mysql.pm
1 package DBIx::Class::Storage::DBI::mysql;
2
3 use strict;
4 use warnings;
5
6 use base qw/
7   DBIx::Class::Storage::DBI::MultiColumnIn
8   DBIx::Class::Storage::DBI
9 /;
10 use mro 'c3';
11
12 __PACKAGE__->sql_maker_class('DBIx::Class::SQLAHacks::MySQL');
13
14 sub with_deferred_fk_checks {
15   my ($self, $sub) = @_;
16
17   $self->_do_query('SET FOREIGN_KEY_CHECKS = 0');
18   $sub->();
19   $self->_do_query('SET FOREIGN_KEY_CHECKS = 1');
20 }
21
22 sub connect_call_set_strict_mode {
23   my $self = shift;
24
25   # the @@sql_mode puts back what was previously set on the session handle
26   $self->_do_query(q|SET SQL_MODE = CONCAT('ANSI,TRADITIONAL,ONLY_FULL_GROUP_BY,', @@sql_mode)|);
27   $self->_do_query(q|SET SQL_AUTO_IS_NULL = 0|);
28 }
29
30 sub _dbh_last_insert_id {
31   my ($self, $dbh, $source, $col) = @_;
32   $dbh->{mysql_insertid};
33 }
34
35 # we need to figure out what mysql version we're running
36 sub sql_maker {
37   my $self = shift;
38
39   unless ($self->_sql_maker) {
40     my $maker = $self->next::method (@_);
41
42     # mysql 3 does not understand a bare JOIN
43     my $mysql_ver = $self->_get_dbh->get_info(18);
44     $maker->{_default_jointype} = 'INNER' if $mysql_ver =~ /^3/;
45   }
46
47   return $self->_sql_maker;
48 }
49
50 sub sqlt_type {
51   return 'MySQL';
52 }
53
54 sub deployment_statements {
55   my $self = shift;
56   my ($schema, $type, $version, $dir, $sqltargs, @rest) = @_;
57
58   $sqltargs ||= {};
59
60   if (
61     ! exists $sqltargs->{producer_args}{mysql_version}
62       and 
63     my $dver = $self->_server_info->{normalized_dbms_version}
64   ) {
65     $sqltargs->{producer_args}{mysql_version} = $dver;
66   }
67
68   $self->next::method($schema, $type, $version, $dir, $sqltargs, @rest);
69 }
70
71 sub _svp_begin {
72     my ($self, $name) = @_;
73
74     $self->_get_dbh->do("SAVEPOINT $name");
75 }
76
77 sub _svp_release {
78     my ($self, $name) = @_;
79
80     $self->_get_dbh->do("RELEASE SAVEPOINT $name");
81 }
82
83 sub _svp_rollback {
84     my ($self, $name) = @_;
85
86     $self->_get_dbh->do("ROLLBACK TO SAVEPOINT $name")
87 }
88
89 sub is_replicating {
90     my $status = shift->_get_dbh->selectrow_hashref('show slave status');
91     return ($status->{Slave_IO_Running} eq 'Yes') && ($status->{Slave_SQL_Running} eq 'Yes');
92 }
93
94 sub lag_behind_master {
95     return shift->_get_dbh->selectrow_hashref('show slave status')->{Seconds_Behind_Master};
96 }
97
98 # MySql can not do subquery update/deletes, only way is slow per-row operations.
99 # This assumes you have set proper transaction isolation and use innodb.
100 sub _subq_update_delete {
101   return shift->_per_row_update_delete (@_);
102 }
103
104 1;
105
106 =head1 NAME
107
108 DBIx::Class::Storage::DBI::mysql - Storage::DBI class implementing MySQL specifics
109
110 =head1 SYNOPSIS
111
112 Storage::DBI autodetects the underlying MySQL database, and re-blesses the
113 C<$storage> object into this class.
114
115   my $schema = MyDb::Schema->connect( $dsn, $user, $pass, { on_connect_call => 'set_strict_mode' } );
116
117 =head1 DESCRIPTION
118
119 This class implements MySQL specific bits of L<DBIx::Class::Storage::DBI>,
120 like AutoIncrement column support and savepoints. Also it augments the
121 SQL maker to support the MySQL-specific C<STRAIGHT_JOIN> join type, which
122 you can use by specifying C<< join_type => 'straight' >> in the
123 L<relationship attributes|DBIx::Class::Relationship::Base/join_type>
124
125
126 It also provides a one-stop on-connect macro C<set_strict_mode> which sets
127 session variables such that MySQL behaves more predictably as far as the
128 SQL standard is concerned.
129
130 =head1 STORAGE OPTIONS
131
132 =head2 set_strict_mode
133
134 Enables session-wide strict options upon connecting. Equivalent to:
135
136   ->connect ( ... , {
137     on_connect_do => [
138       q|SET SQL_MODE = CONCAT('ANSI,TRADITIONAL,ONLY_FULL_GROUP_BY,', @@sql_mode)|,
139       q|SET SQL_AUTO_IS_NULL = 0|,
140     ]
141   });
142
143 =head1 AUTHORS
144
145 See L<DBIx::Class/CONTRIBUTORS>
146
147 =head1 LICENSE
148
149 You may distribute this code under the same terms as Perl itself.
150
151 =cut