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