Changed getting of version from main module, added exe file.
[dbsrgits/SQL-Translator.git] / bin / sql_translator.pl
CommitLineData
7a8e1f51 1#!/usr/bin/perl -w
16dc9970 2
49e1eb70 3# -------------------------------------------------------------------
032bd3c7 4# $Id: sql_translator.pl,v 1.9 2003-05-12 14:48:43 kycl4rk Exp $
49e1eb70 5# -------------------------------------------------------------------
783908a1 6# Copyright (C) 2002 Ken Y. Clark <kycl4rk@users.sourceforge.net>,
7# darren chamberlain <darren@cpan.org>
8#
9# This program is free software; you can redistribute it and/or
10# modify it under the terms of the GNU General Public License as
11# published by the Free Software Foundation; version 2.
12#
13# This program is distributed in the hope that it will be useful, but
14# WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16# General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
20# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
21# 02111-1307 USA
22# -------------------------------------------------------------------
16dc9970 23
24use strict;
25use Getopt::Long;
26use Pod::Usage;
27use SQL::Translator;
49e1eb70 28
29use Data::Dumper;
30
16dc9970 31use vars qw( $VERSION );
032bd3c7 32$VERSION = sprintf "%d.%02d", q$Revision: 1.9 $ =~ /(\d+)\.(\d+)/;
64ad4e66 33
34my $from; # the original database
35my $to; # the destination database
36my $help; # show POD and bail
37my $stdin; # whether to read STDIN for create script
38my $no_comments; # whether to put comments in out file
39my $show_warnings; # whether to show warnings from SQL::Translator
40my $add_drop_table; # whether to show warnings from SQL::Translator
41my $xlate; # user overrides for field translation
42my $debug; # whether to print debug info
43my $trace; # whether to print parser trace
44my $list; # list all parsers and producers
032bd3c7 45my $no_trim; # don't trim whitespace on xSV fields
46my $no_scan; # don't scan xSV fields for data types and sizes
64ad4e66 47my $field_separator; # for xSV files
48my $record_separator; # for xSV files
16dc9970 49
50#
51# Get options, explain how to use the script if necessary.
52#
53GetOptions(
d529894e 54 'f|from|parser:s' => \$from,
55 't|to|producer:s' => \$to,
783908a1 56 'h|help' => \$help,
d529894e 57 'l|list' => \$list,
58 'd|debug' => \$debug,
59 'trace' => \$trace,
60 'no-comments' => \$no_comments,
96844cae 61 'show-warnings' => \$show_warnings,
62 'add-drop-table' => \$add_drop_table,
032bd3c7 63 'no-trim' => \$no_trim,
64 'no-scan' => \$no_scan,
64ad4e66 65 'fs:s' => \$field_separator,
66 'rs:s' => \$record_separator,
16dc9970 67) or pod2usage(2);
68
d529894e 69my @files = @ARGV; # the create script(s) for the original db
16dc9970 70
71pod2usage(1) if $help;
d529894e 72
73if ( $xlate ) {
74 my @fields = split /,/, $xlate;
75 $xlate = {};
76 for my $field ( @fields ) {
77 my ( $from, $to ) = split(/\//, $field);
78 $xlate->{$from} = $to;
79 }
80}
16dc9970 81
82#
83# If everything is OK, translate file(s).
84#
64ad4e66 85my $translator = SQL::Translator->new(
86 xlate => $xlate || {},
87 debug => $debug || 0,
88 trace => $trace || 0,
89 no_comments => $no_comments || 0,
90 show_warnings => $show_warnings || 0,
91 add_drop_table => $add_drop_table || 0,
92 parser_args => {
032bd3c7 93 trim_fields => $no_trim ? 0 : 1,
94 scan_fields => $no_scan ? 0 : 1,
64ad4e66 95 field_separator => $field_separator,
96 record_separator => $record_separator,
97 }
d529894e 98);
99
100if ( $list ) {
101 my @parsers = $translator->list_parsers;
102 my @producers = $translator->list_producers;
103
104 for ( @parsers, @producers ) {
105 if ( $_ =~ m/.+::(\w+)\.pm/ ) {
106 $_ = $1;
107 }
108 }
109
110 print "\nParsers:\n", map { "\t$_\n" } sort @parsers;
111 print "\nProducers:\n", map { "\t$_\n" } sort @producers;
112 print "\n";
113 exit(0);
114}
115
116pod2usage(2) unless $from && $to && @files;
117
783908a1 118$translator->parser($from);
119$translator->producer($to);
120
121for my $file (@files) {
49e1eb70 122 my $output = $translator->translate( $file ) or die
123 "Error: " . $translator->error;
124 print $output;
783908a1 125}
16dc9970 126
49e1eb70 127# ----------------------------------------------------
16dc9970 128# It is not all books that are as dull as their readers.
129# Henry David Thoreau
49e1eb70 130# ----------------------------------------------------
16dc9970 131
132=head1 NAME
133
49e1eb70 134sql_translator.pl - convert an SQL database schema
16dc9970 135
136=head1 SYNOPSIS
137
d529894e 138For help:
139
16dc9970 140 ./sql_translator.pl -h|--help
141
d529894e 142For a list of all parsers and producers:
143
144 ./sql_translator.pl -l|--list
145
146To translate a schema:
147
148 ./sql_translator.pl
149 -f|--from|--parser MySQL
150 -t|--to|--producer Oracle
151 [options]
152 file
16dc9970 153
154 Options:
155
64ad4e66 156 -d|--debug Print debug info
157 --trace Print parser trace info
158 --no-comments Don't include comments in SQL output
159 --show-warnings Print to STDERR warnings of conflicts, etc.
160 --add-drop-table Add 'drop table' statements before creates
161
162 xSV Options:
163
64ad4e66 164 --fs The field separator
165 --rs The record separator
032bd3c7 166 --no-trim Don't trim whitespace on fields
167 --no-scan Don't scan fields for data types and sizes
168
16dc9970 169=head1 DESCRIPTION
170
d529894e 171This script is part of the SQL Fairy project
172(http://sqlfairy.sourceforge.net/). It will try to convert any
173database syntax for which it has a grammar into some other format it
174knows about.
16dc9970 175
96844cae 176If using "show-warnings," be sure to redirect STDERR to a separate file.
177In bash, you could do this:
178
179 $ sql_translator.pl -f MySQL -t PostgreSQL --show-warnings file.sql \
180 1>out 2>err
181
16dc9970 182=head1 AUTHOR
183
d529894e 184Ken Y. Clark E<lt>kclark@cpan.orgE<gt>
16dc9970 185
186=head1 SEE ALSO
187
d529894e 188SQL::Translator.
16dc9970 189
190=cut