1 package SQL::Translator::Producer::XML;
3 # -------------------------------------------------------------------
4 # $Id: XML.pm,v 1.15 2003-08-22 22:51:51 kycl4rk Exp $
5 # -------------------------------------------------------------------
6 # Copyright (C) 2003 Ken Y. Clark <kclark@cpan.org>.
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.
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.
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
21 # -------------------------------------------------------------------
27 SQL::Translator::Producer::XML - Alias to XML::SQLFairy producer
31 Previous versions of SQL::Translator included an XML producer, but the
32 namespace has since been further subdivided. Therefore, this module is
33 now just just an alias to the XML::SQLFairy producer.
37 SQL::Translator::Producer::XML::SQLFairy.
41 Ken Y. Clark E<lt>kclark@cpan.orgE<gt>.
45 # -------------------------------------------------------------------
48 use vars qw[ $VERSION $DEBUG ];
49 $VERSION = sprintf "%d.%02d", q$Revision: 1.15 $ =~ /(\d+)\.(\d+)/;
50 $DEBUG = 1 unless defined $DEBUG;
52 use SQL::Translator::Producer::XML::SQLFairy;
54 *produce = \&SQL::Translator::Producer::XML::SQLFairy::produce;