new dev release
[dbsrgits/DBIx-Class-Schema-Loader.git] / lib / DBIx / Class / Schema / Loader / DBI / MSSQL.pm
CommitLineData
fe67d343 1package DBIx::Class::Schema::Loader::DBI::MSSQL;
2
3use strict;
4use warnings;
c9373b79 5use base qw/
6 DBIx::Class::Schema::Loader::DBI
7 DBIx::Class::Schema::Loader::DBI::Sybase::Common
8/;
fe67d343 9use Carp::Clan qw/^DBIx::Class/;
10use Class::C3;
11
b1ad1a84 12our $VERSION = '0.04999_10';
fe67d343 13
14=head1 NAME
15
16DBIx::Class::Schema::Loader::DBI::MSSQL - DBIx::Class::Schema::Loader::DBI MSSQL Implementation.
17
18=head1 SYNOPSIS
19
20 package My::Schema;
21 use base qw/DBIx::Class::Schema::Loader/;
22
23 __PACKAGE__->loader_options( debug => 1 );
24
25 1;
26
27=head1 DESCRIPTION
28
29See L<DBIx::Class::Schema::Loader::Base>.
30
31=cut
32
33sub _setup {
34 my $self = shift;
35
36 $self->next::method(@_);
af8f6279 37 $self->{db_schema} ||= $self->_build_db_schema;
c9373b79 38 $self->_set_quote_char_and_name_sep;
fe67d343 39}
40
d89bca78 41# remove 'IDENTITY' from column data_type
42sub _columns_info_for {
43 my $self = shift;
44 my $result = $self->next::method(@_);
45
46 for my $col (keys %$result) {
47 $result->{$col}->{data_type} =~ s/\s* identity \s*//ix;
48 }
49
50 return $result;
51}
52
fe67d343 53sub _table_pk_info {
54 my ($self, $table) = @_;
55 my $dbh = $self->schema->storage->dbh;
56 my $sth = $dbh->prepare(qq{sp_pkeys '$table'});
57 $sth->execute;
58
59 my @keydata;
60
61 while (my $row = $sth->fetchrow_hashref) {
65f74457 62 push @keydata, lc $row->{COLUMN_NAME};
fe67d343 63 }
64
65 return \@keydata;
66}
67
68sub _table_fk_info {
69 my ($self, $table) = @_;
70
71 my ($local_cols, $remote_cols, $remote_table, @rels);
72 my $dbh = $self->schema->storage->dbh;
73 my $sth = $dbh->prepare(qq{sp_fkeys \@FKTABLE_NAME = '$table'});
74 $sth->execute;
75
76 while (my $row = $sth->fetchrow_hashref) {
65f74457 77 my $fk = $row->{FK_NAME};
78 push @{$local_cols->{$fk}}, lc $row->{FKCOLUMN_NAME};
79 push @{$remote_cols->{$fk}}, lc $row->{PKCOLUMN_NAME};
80 $remote_table->{$fk} = $row->{PKTABLE_NAME};
fe67d343 81 }
82
83 foreach my $fk (keys %$remote_table) {
65f74457 84 push @rels, {
85 local_columns => \@{$local_cols->{$fk}},
86 remote_columns => \@{$remote_cols->{$fk}},
87 remote_table => $remote_table->{$fk},
88 };
fe67d343 89
90 }
91 return \@rels;
92}
93
94sub _table_uniq_info {
95 my ($self, $table) = @_;
96
97 my $dbh = $self->schema->storage->dbh;
98 my $sth = $dbh->prepare(qq{SELECT CCU.CONSTRAINT_NAME, CCU.COLUMN_NAME FROM INFORMATION_SCHEMA.CONSTRAINT_COLUMN_USAGE CCU
99 JOIN INFORMATION_SCHEMA.TABLE_CONSTRAINTS TC ON (CCU.CONSTRAINT_NAME = TC.CONSTRAINT_NAME)
100 JOIN INFORMATION_SCHEMA.KEY_COLUMN_USAGE KCU ON (CCU.CONSTRAINT_NAME = KCU.CONSTRAINT_NAME AND CCU.COLUMN_NAME = KCU.COLUMN_NAME)
101 WHERE CCU.TABLE_NAME = '$table' AND CONSTRAINT_TYPE = 'UNIQUE' ORDER BY KCU.ORDINAL_POSITION});
102 $sth->execute;
103 my $constraints;
104 while (my $row = $sth->fetchrow_hashref) {
105 my $name = lc $row->{CONSTRAINT_NAME};
106 my $col = lc $row->{COLUMN_NAME};
107 push @{$constraints->{$name}}, $col;
108 }
109
110 my @uniqs = map { [ $_ => $constraints->{$_} ] } keys %$constraints;
111 return \@uniqs;
112}
113
114sub _extra_column_info {
115 my ($self, $info) = @_;
116 my %extra_info;
117
118 my ($table, $column) = @$info{qw/TABLE_NAME COLUMN_NAME/};
119
120 my $dbh = $self->schema->storage->dbh;
121 my $sth = $dbh->prepare(qq{SELECT COLUMN_NAME
122 FROM INFORMATION_SCHEMA.COLUMNS
123 WHERE COLUMNPROPERTY(object_id('$table', 'U'), '$column', 'IsIdentity') = 1 AND TABLE_NAME = '$table' AND COLUMN_NAME = '$column'
124 });
125 $sth->execute();
126
127 if ($sth->fetchrow_array) {
128 $extra_info{is_auto_increment} = 1;
129 }
130
131 return \%extra_info;
132}
133
134
135=head1 SEE ALSO
136
137L<DBIx::Class::Schema::Loader>, L<DBIx::Class::Schema::Loader::Base>,
138L<DBIx::Class::Schema::Loader::DBI>
139
140=head1 AUTHOR
141
142Justin Hunter C<justin.d.hunter@gmail.com>
143
0852b7b8 144=head1 CONTRIBUTORS
145
146Rafael Kitover <rkitover@cpan.org>
147
fe67d343 148=cut
149
1501;