1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
package SQL::Translator::Producer::XML;
=pod
=head1 NAME
SQL::Translator::Producer::XML - Alias to XML::SQLFairy producer
=head1 DESCRIPTION
Previous versions of SQL::Translator included an XML producer, but the
namespace has since been further subdivided. Therefore, this module is
now just just an alias to the XML::SQLFairy producer.
=head1 SEE ALSO
SQL::Translator::Producer::XML::SQLFairy.
=head1 AUTHOR
Ken Youens-Clark E<lt>kclark@cpan.orgE<gt>.
=cut
use strict;
use warnings;
our $DEBUG;
our $VERSION = '1.59';
$DEBUG = 1 unless defined $DEBUG;
use SQL::Translator::Producer::XML::SQLFairy;
*produce = \&SQL::Translator::Producer::XML::SQLFairy::produce;
1;
|