release 0.07014
[dbsrgits/DBIx-Class-Schema-Loader.git] / lib / DBIx / Class / Schema / Loader / DBI / SQLite.pm
CommitLineData
996be9ee 1package DBIx::Class::Schema::Loader::DBI::SQLite;
2
3use strict;
4use warnings;
893c0d45 5use base qw/
6 DBIx::Class::Schema::Loader::DBI::Component::QuotedDefault
7 DBIx::Class::Schema::Loader::DBI
8/;
942bd5e0 9use mro 'c3';
c4a69b87 10use DBIx::Class::Schema::Loader::Table ();
996be9ee 11
0f844832 12our $VERSION = '0.07014';
32f784fc 13
996be9ee 14=head1 NAME
15
16DBIx::Class::Schema::Loader::DBI::SQLite - DBIx::Class::Schema::Loader::DBI SQLite Implementation.
17
996be9ee 18=head1 DESCRIPTION
19
bc1cb85e 20See L<DBIx::Class::Schema::Loader> and L<DBIx::Class::Schema::Loader::Base>.
996be9ee 21
3b7f80f9 22=head1 METHODS
23
24=head2 rescan
25
bc1cb85e 26SQLite will fail all further commands on a connection if the underlying schema
27has been modified. Therefore, any runtime changes requiring C<rescan> also
28require us to re-connect to the database. The C<rescan> method here handles
29that reconnection for you, but beware that this must occur for any other open
30sqlite connections as well.
3b7f80f9 31
996be9ee 32=cut
33
bc1cb85e 34sub _setup {
35 my $self = shift;
36
37 $self->next::method(@_);
38
39 if (not defined $self->preserve_case) {
40 $self->preserve_case(0);
41 }
c4a69b87 42
43 if ($self->db_schema) {
44 warn <<'EOF';
45db_schema is not supported on SQLite, the option is implemented only for qualify_objects testing.
46EOF
47 if ($self->db_schema->[0] eq '%') {
48 $self->db_schema(undef);
49 }
50 }
bc1cb85e 51}
52
3b7f80f9 53sub rescan {
54 my ($self, $schema) = @_;
55
56 $schema->storage->disconnect if $schema->storage;
57 $self->next::method($schema);
58}
59
007e3511 60sub _columns_info_for {
61 my $self = shift;
62 my ($table) = @_;
63
64 my $result = $self->next::method(@_);
a8df0345 65
c4a69b87 66 local $self->dbh->{FetchHashKeyName} = 'NAME_lc';
007e3511 67
c4a69b87 68 my $sth = $self->dbh->prepare(
69 "pragma table_info(" . $self->dbh->quote_identifier($table) . ")"
97ab24bc 70 );
71 $sth->execute;
72 my $cols = $sth->fetchall_hashref('name');
73
692404d1 74 my ($num_pk, $pk_col) = (0);
75 # SQLite doesn't give us the info we need to do this nicely :(
76 # If there is exactly one column marked PK, and its type is integer,
77 # set it is_auto_increment. This isn't 100%, but it's better than the
78 # alternatives.
97ab24bc 79 while (my ($col_name, $info) = each %$result) {
692404d1 80 if ($cols->{$col_name}{pk}) {
81 $num_pk ++;
82 if (lc($cols->{$col_name}{type}) eq 'integer') {
83 $pk_col = $col_name;
84 }
97ab24bc 85 }
007e3511 86 }
87
88 while (my ($col, $info) = each %$result) {
268cc246 89 if ((eval { ${ $info->{default_value} } }||'') eq 'CURRENT_TIMESTAMP') {
007e3511 90 ${ $info->{default_value} } = 'current_timestamp';
dca5cd02 91 }
692404d1 92 if ($num_pk == 1 and defined $pk_col and $pk_col eq $col) {
93 $info->{is_auto_increment} = 1;
94 }
a8df0345 95 }
96
007e3511 97 return $result;
996be9ee 98}
99
100sub _table_fk_info {
101 my ($self, $table) = @_;
102
c4a69b87 103 my $sth = $self->dbh->prepare(
104 "pragma foreign_key_list(" . $self->dbh->quote_identifier($table) . ")"
dca5cd02 105 );
106 $sth->execute;
996be9ee 107
dca5cd02 108 my @rels;
109 while (my $fk = $sth->fetchrow_hashref) {
110 my $rel = $rels[ $fk->{id} ] ||= {
111 local_columns => [],
112 remote_columns => undef,
c4a69b87 113 remote_table => DBIx::Class::Schema::Loader::Table->new(
114 loader => $self,
115 name => $fk->{table},
116 ($self->db_schema ? (
117 schema => $self->db_schema->[0],
118 ignore_schema => 1,
119 ) : ()),
120 ),
dca5cd02 121 };
122
bc1cb85e 123 push @{ $rel->{local_columns} }, $self->_lc($fk->{from});
124 push @{ $rel->{remote_columns} }, $self->_lc($fk->{to}) if defined $fk->{to};
dca5cd02 125 warn "This is supposed to be the same rel but remote_table changed from ",
c4a69b87 126 $rel->{remote_table}->name, " to ", $fk->{table}
127 if $rel->{remote_table}->name ne $fk->{table};
dca5cd02 128 }
129 $sth->finish;
130 return \@rels;
996be9ee 131}
132
133sub _table_uniq_info {
134 my ($self, $table) = @_;
135
c4a69b87 136 my $sth = $self->dbh->prepare(
137 "pragma index_list(" . $self->dbh->quote($table) . ")"
dca5cd02 138 );
139 $sth->execute;
996be9ee 140
dca5cd02 141 my @uniqs;
142 while (my $idx = $sth->fetchrow_hashref) {
143 next unless $idx->{unique};
4a1323d2 144
dca5cd02 145 my $name = $idx->{name};
146
c4a69b87 147 my $get_idx_sth = $self->dbh->prepare("pragma index_info(" . $self->dbh->quote($name) . ")");
dca5cd02 148 $get_idx_sth->execute;
149 my @cols;
150 while (my $idx_row = $get_idx_sth->fetchrow_hashref) {
bc1cb85e 151 push @cols, $self->_lc($idx_row->{name});
dca5cd02 152 }
153 $get_idx_sth->finish;
4a1323d2 154
155 # Rename because SQLite complains about sqlite_ prefixes on identifiers
156 # and ignores constraint names in DDL.
157 $name = (join '_', @cols) . '_unique';
158
dca5cd02 159 push @uniqs, [ $name => \@cols ];
160 }
161 $sth->finish;
162 return \@uniqs;
996be9ee 163}
164
165sub _tables_list {
bfb43060 166 my ($self, $opts) = @_;
5223f24a 167
c4a69b87 168 my $sth = $self->dbh->prepare("SELECT * FROM sqlite_master");
996be9ee 169 $sth->execute;
170 my @tables;
171 while ( my $row = $sth->fetchrow_hashref ) {
26da4cc3 172 next unless $row->{type} =~ /^(?:table|view)\z/i;
522ee84e 173 next if $row->{tbl_name} =~ /^sqlite_/;
c4a69b87 174 push @tables, DBIx::Class::Schema::Loader::Table->new(
175 loader => $self,
176 name => $row->{tbl_name},
177 ($self->db_schema ? (
178 schema => $self->db_schema->[0],
179 ignore_schema => 1, # for qualify_objects tests
180 ) : ()),
181 );
996be9ee 182 }
3b7f80f9 183 $sth->finish;
bfb43060 184 return $self->_filter_tables(\@tables, $opts);
996be9ee 185}
186
187=head1 SEE ALSO
188
189L<DBIx::Class::Schema::Loader>, L<DBIx::Class::Schema::Loader::Base>,
190L<DBIx::Class::Schema::Loader::DBI>
191
be80bba7 192=head1 AUTHOR
193
9cc8e7e1 194See L<DBIx::Class::Schema::Loader/AUTHOR> and L<DBIx::Class::Schema::Loader/CONTRIBUTORS>.
be80bba7 195
196=head1 LICENSE
197
198This library is free software; you can redistribute it and/or modify it under
199the same terms as Perl itself.
200
996be9ee 201=cut
202
2031;