Changed to use schema, refactored duplicated code (also in GraphViz) up
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Parser / Sybase.pm
index 6ab1468..db4b7c8 100644 (file)
@@ -1,13 +1,41 @@
 package SQL::Translator::Parser::Sybase;
 
-#-----------------------------------------------------
-# $Id: Sybase.pm,v 1.1.1.1 2002-03-01 02:26:25 kycl4rk Exp $
+# -------------------------------------------------------------------
+# $Id: Sybase.pm,v 1.4 2003-01-27 17:04:46 dlc Exp $
+# -------------------------------------------------------------------
+# Copyright (C) 2003 Ken Y. Clark <kclark@cpan.org>,
+#                    darren chamberlain <darren@cpan.org>,
+#                    Chris Mungall <cjm@fruitfly.org>
 #
-# File       : SQL/Translator/Parser/Sybase.pm
-# Programmer : Ken Y. Clark, kclark@logsoft.com
-# Created    : 2002/02/27
-# Purpose    : parser for Sybase (dbschema.pl)
-#-----------------------------------------------------
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; version 2.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+# 02111-1307  USA
+# -------------------------------------------------------------------
+
+=head1 NAME
+
+SQL::Translator::Parser::Sybase - parser for Sybase
+
+=head1 SYNOPSIS
+
+  use SQL::Translator::Parser::Sybase;
+
+=head1 DESCRIPTION
+
+Parses the output of "dbschema.pl," a Perl script freely available from
+www.midsomer.org.
+
+=cut
 
 my $grammar = q{
 
@@ -87,7 +115,7 @@ my $grammar = q{
                     
                             if ( $line->{'is_primary_key'} ) {
                                 push
-                                @{ $tables{ $item{'table_name'} }{'indeces'} },
+                                @{ $tables{ $item{'table_name'} }{'indices'} },
                                 {
                                     type   => 'primary_key',
                                     fields => [ $field_name ],
@@ -95,7 +123,7 @@ my $grammar = q{
                             }
                         }
                         else {
-                            push @{ $tables{ $item{'table_name'} }{'indeces'} },
+                            push @{ $tables{ $item{'table_name'} }{'indices'} },
                                 $line;
                         }
                         $tables{ $item{'table_name'} }{'type'} = 
@@ -212,21 +240,11 @@ my $grammar = q{
 # Ralph Waldo Emerson
 #-----------------------------------------------------
 
-=head1 NAME
-
-SQL::Translator::Parser::Sybase - parser for Sybase
-
-=head1 SYNOPSIS
-
-  use SQL::Translator::Parser::Sybase;
-
-=head1 DESCRIPTION
-
-Blah blah blah.
+=pod
 
 =head1 AUTHOR
 
-Ken Y. Clark, kclark@logsoft.com
+Ken Y. Clark E<lt>kclark@cpan.orgE<gt>
 
 =head1 SEE ALSO