9432d0cb6a17dd07e6f3af281d2e986d44a4012e
[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::AmbiguousGlob
9   DBIx::Class::Storage::DBI
10 /;
11
12 __PACKAGE__->sql_maker_class('DBIx::Class::SQLAHacks::MySQL');
13
14 sub with_deferred_fk_checks {
15   my ($self, $sub) = @_;
16
17   $self->dbh->do('SET foreign_key_checks=0');
18   $sub->();
19   $self->dbh->do('SET foreign_key_checks=1');
20 }
21
22 sub _dbh_last_insert_id {
23   my ($self, $dbh, $source, $col) = @_;
24   $dbh->{mysql_insertid};
25 }
26
27 sub sqlt_type {
28   return 'MySQL';
29 }
30
31 sub _svp_begin {
32     my ($self, $name) = @_;
33
34     $self->dbh->do("SAVEPOINT $name");
35 }
36
37 sub _svp_release {
38     my ($self, $name) = @_;
39
40     $self->dbh->do("RELEASE SAVEPOINT $name");
41 }
42
43 sub _svp_rollback {
44     my ($self, $name) = @_;
45
46     $self->dbh->do("ROLLBACK TO SAVEPOINT $name")
47 }
48
49 sub is_replicating {
50     my $status = shift->dbh->selectrow_hashref('show slave status');
51     return ($status->{Slave_IO_Running} eq 'Yes') && ($status->{Slave_SQL_Running} eq 'Yes');
52 }
53
54 sub lag_behind_master {
55     return shift->dbh->selectrow_hashref('show slave status')->{Seconds_Behind_Master};
56 }
57
58 # MySql can not do subquery update/deletes, only way is slow per-row operations.
59 # This assumes you have set proper transaction isolation and use innodb.
60 sub _subq_update_delete {
61   return shift->_per_row_update_delete (@_);
62 }
63
64 1;
65
66 =head1 NAME
67
68 DBIx::Class::Storage::DBI::mysql - Automatic primary key class for MySQL
69
70 =head1 SYNOPSIS
71
72   # In your table classes
73   __PACKAGE__->load_components(qw/PK::Auto Core/);
74   __PACKAGE__->set_primary_key('id');
75
76 =head1 DESCRIPTION
77
78 This class implements autoincrements for MySQL.
79
80 =head1 AUTHORS
81
82 Matt S. Trout <mst@shadowcatsystems.co.uk>
83
84 =head1 LICENSE
85
86 You may distribute this code under the same terms as Perl itself.
87
88 =cut