1 package DBIx::Class::Storage::DBI::mysql;
7 DBIx::Class::Storage::DBI::MultiColumnIn
8 DBIx::Class::Storage::DBI
12 __PACKAGE__->sql_maker_class('DBIx::Class::SQLMaker::MySQL');
13 __PACKAGE__->sql_limit_dialect ('LimitXY');
14 __PACKAGE__->sql_quote_char ('`');
16 sub with_deferred_fk_checks {
17 my ($self, $sub) = @_;
19 $self->_do_query('SET FOREIGN_KEY_CHECKS = 0');
21 $self->_do_query('SET FOREIGN_KEY_CHECKS = 1');
24 sub connect_call_set_strict_mode {
27 # the @@sql_mode puts back what was previously set on the session handle
28 $self->_do_query(q|SET SQL_MODE = CONCAT('ANSI,TRADITIONAL,ONLY_FULL_GROUP_BY,', @@sql_mode)|);
29 $self->_do_query(q|SET SQL_AUTO_IS_NULL = 0|);
32 sub _dbh_last_insert_id {
33 my ($self, $dbh, $source, $col) = @_;
34 $dbh->{mysql_insertid};
37 # here may seem like an odd place to override, but this is the first
38 # method called after we are connected *and* the driver is determined
39 # ($self is reblessed). See code flow in ::Storage::DBI::_populate_dbh
40 sub _run_connection_actions {
43 # default mysql_auto_reconnect to off unless explicitly set
45 $self->_dbh->{mysql_auto_reconnect}
47 ! exists $self->_dbic_connect_attributes->{mysql_auto_reconnect}
49 $self->_dbh->{mysql_auto_reconnect} = 0;
52 $self->next::method(@_);
55 # we need to figure out what mysql version we're running
59 unless ($self->_sql_maker) {
60 my $maker = $self->next::method (@_);
62 # mysql 3 does not understand a bare JOIN
63 my $mysql_ver = $self->_dbh_get_info(18);
64 $maker->{_default_jointype} = 'INNER' if $mysql_ver =~ /^3/;
67 return $self->_sql_maker;
74 sub deployment_statements {
76 my ($schema, $type, $version, $dir, $sqltargs, @rest) = @_;
81 ! exists $sqltargs->{producer_args}{mysql_version}
83 my $dver = $self->_server_info->{normalized_dbms_version}
85 $sqltargs->{producer_args}{mysql_version} = $dver;
88 $self->next::method($schema, $type, $version, $dir, $sqltargs, @rest);
92 my ($self, $name) = @_;
94 $self->_dbh->do("SAVEPOINT $name");
97 sub _exec_svp_release {
98 my ($self, $name) = @_;
100 $self->_dbh->do("RELEASE SAVEPOINT $name");
103 sub _exec_svp_rollback {
104 my ($self, $name) = @_;
106 $self->_dbh->do("ROLLBACK TO SAVEPOINT $name")
110 my $status = shift->_get_dbh->selectrow_hashref('show slave status');
111 return ($status->{Slave_IO_Running} eq 'Yes') && ($status->{Slave_SQL_Running} eq 'Yes');
114 sub lag_behind_master {
115 return shift->_get_dbh->selectrow_hashref('show slave status')->{Seconds_Behind_Master};
118 # MySql can not do subquery update/deletes, only way is slow per-row operations.
119 # This assumes you have set proper transaction isolation and use innodb.
120 sub _subq_update_delete {
121 return shift->_per_row_update_delete (@_);
128 DBIx::Class::Storage::DBI::mysql - Storage::DBI class implementing MySQL specifics
132 Storage::DBI autodetects the underlying MySQL database, and re-blesses the
133 C<$storage> object into this class.
135 my $schema = MyDb::Schema->connect( $dsn, $user, $pass, { on_connect_call => 'set_strict_mode' } );
139 This class implements MySQL specific bits of L<DBIx::Class::Storage::DBI>,
140 like AutoIncrement column support and savepoints. Also it augments the
141 SQL maker to support the MySQL-specific C<STRAIGHT_JOIN> join type, which
142 you can use by specifying C<< join_type => 'straight' >> in the
143 L<relationship attributes|DBIx::Class::Relationship::Base/join_type>
146 It also provides a one-stop on-connect macro C<set_strict_mode> which sets
147 session variables such that MySQL behaves more predictably as far as the
148 SQL standard is concerned.
150 =head1 STORAGE OPTIONS
152 =head2 set_strict_mode
154 Enables session-wide strict options upon connecting. Equivalent to:
158 q|SET SQL_MODE = CONCAT('ANSI,TRADITIONAL,ONLY_FULL_GROUP_BY,', @@sql_mode)|,
159 q|SET SQL_AUTO_IS_NULL = 0|,
165 See L<DBIx::Class/CONTRIBUTORS>
169 You may distribute this code under the same terms as Perl itself.