- Removed use of $Revision$ SVN keyword to generate VERSION variables; now sub-module...
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Parser / DBI / Oracle.pm
CommitLineData
bef2169c 1package SQL::Translator::Parser::DBI::Oracle;
2
bef2169c 3# -------------------------------------------------------------------
821a0fde 4# $Id$
bef2169c 5# -------------------------------------------------------------------
478f608d 6# Copyright (C) 2006-2009 SQLFairy Authors
bef2169c 7#
8# This program is free software; you can redistribute it and/or
9# modify it under the terms of the GNU General Public License as
10# published by the Free Software Foundation; version 2.
11#
12# This program is distributed in the hope that it will be useful, but
13# WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15# General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with this program; if not, write to the Free Software
19# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20# 02111-1307 USA
21# -------------------------------------------------------------------
22
23=head1 NAME
24
25SQL::Translator::Parser::DBI::Oracle - parser for DBD::Oracle
26
27=head1 SYNOPSIS
28
29See SQL::Translator::Parser::DBI.
30
31=head1 DESCRIPTION
32
33Uses DBI introspection methods to determine schema details.
34
35=cut
36
37use strict;
38use warnings;
39use DBI;
40use SQL::Translator::Schema::Constants;
41use SQL::Translator::Schema::Table;
42use SQL::Translator::Schema::Field;
43use SQL::Translator::Schema::Constraint;
44
bef2169c 45# -------------------------------------------------------------------
46sub parse {
47 my ( $tr, $dbh ) = @_;
48
49 my $schema = $tr->schema;
50
51 my $sth = $dbh->table_info();
52
53 while(my $table_info = $sth->fetchrow_hashref('NAME_uc')) {
54 next unless ($table_info->{TABLE_TYPE} eq 'TABLE');
55 next if ($table_info->{TABLE_NAME} =~ /\$/);
56
57 # create the table
58
59 my $table = $schema->add_table(
60 name => $table_info->{TABLE_NAME},
61 type => $table_info->{TABLE_TYPE},
62 );
63
64 # add the fields (columns) for this table
65
66 my $sth;
67
68 $sth = $dbh->column_info(
69 undef,
70 $table_info->{TABLE_SCHEM},
71 $table_info->{TABLE_NAME},
72 '%'
73 );
74
75 while(my $column = $sth->fetchrow_hashref('NAME_uc')) {
76 my $f = $table->add_field(
77 name => $column->{COLUMN_NAME},
78 default_value => $column->{COLUMN_DEF},
79 data_type => $column->{TYPE_NAME},
80 order => $column->{ORDINAL_POSITION},
81 size => $column->{COLUMN_SIZE},
82 ) || die $table->error;
83
84 $f->is_nullable( $column->{NULLABLE} == 1 );
85 }
86
87 # add the primary key info
88
89 $sth = $dbh->primary_key_info(
90 undef,
91 $table_info->{TABLE_SCHEM},
92 $table_info->{TABLE_NAME},
93 );
94
95 while(my $primary_key = $sth->fetchrow_hashref('NAME_uc')) {
96 my $f = $table->get_field( $primary_key->{COLUMN_NAME} );
97 $f->is_primary_key(1);
98 }
99
100 # add the foreign key info (constraints)
101
102 $sth = $dbh->foreign_key_info(
103 undef,
104 undef,
105 undef,
106 undef,
107 $table_info->{TABLE_SCHEM},
108 $table_info->{TABLE_NAME},
109 );
110
111 my $cons = {};
112 while(my $foreign_key = $sth->fetchrow_hashref('NAME_uc')) {
113 my $name = $foreign_key->{FK_NAME};
114 $cons->{$name}->{reference_table} = $foreign_key->{UK_TABLE_NAME};
115 push @{ $cons->{$name}->{fields} },
116 $foreign_key->{FK_COLUMN_NAME};
117 push @{ $cons->{$name}->{reference_fields} },
118 $foreign_key->{UK_COLUMN_NAME};
119 }
120
121 for my $name ( keys %$cons ) {
122 my $c = $table->add_constraint(
123 type => FOREIGN_KEY,
124 name => $name,
125 fields => $cons->{$name}->{fields},
126 reference_fields => $cons->{$name}->{reference_fields},
127 reference_table => $cons->{$name}->{reference_table},
128 ) || die $table->error;
129 }
130 }
131
132 return 1;
133}
134
1351;
136
137=pod
138
139=head1 AUTHOR
140
141Earl Cahill E<lt>cpan@spack.netE<gt>.
142
143=head1 ACKNOWLEDGEMENT
144
145Initial revision of this module came almost entirely from work done by
146Todd Hepler E<lt>thepler@freeshell.orgE<gt>. My changes were
147quite minor (ensuring NAME_uc, changing a couple variable names,
148skipping tables with a $ in them).
149
150Todd claimed his work to be an almost verbatim copy of
151SQL::Translator::Parser::DBI::PostgreSQL revision 1.7
152
153For me, the real work happens in DBD::Oracle and DBI, which, also
154for me, that is the beauty of having introspection methods in DBI.
155
156=head1 SEE ALSO
157
158SQL::Translator, DBD::Oracle.
159
160=cut