From: Ken Youens-Clark Date: Thu, 22 Apr 2004 19:59:46 +0000 (+0000) Subject: Give higher billing for manual. X-Git-Tag: v0.06~68 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2d993495a15b2fb29200f85e65caaf2ebef7add3;p=dbsrgits%2FSQL-Translator.git Give higher billing for manual. --- diff --git a/lib/SQL/Translator.pm b/lib/SQL/Translator.pm index 786734a..446fa21 100644 --- a/lib/SQL/Translator.pm +++ b/lib/SQL/Translator.pm @@ -1,7 +1,7 @@ package SQL::Translator; # ---------------------------------------------------------------------- -# $Id: Translator.pm,v 1.56 2004-04-22 19:57:29 kycl4rk Exp $ +# $Id: Translator.pm,v 1.57 2004-04-22 19:59:46 kycl4rk Exp $ # ---------------------------------------------------------------------- # Copyright (C) 2002-4 The SQLFairy Authors # @@ -27,7 +27,7 @@ use base 'Class::Base'; require 5.004; $VERSION = '0.06'; -$REVISION = sprintf "%d.%02d", q$Revision: 1.56 $ =~ /(\d+)\.(\d+)/; +$REVISION = sprintf "%d.%02d", q$Revision: 1.57 $ =~ /(\d+)\.(\d+)/; $DEBUG = 0 unless defined $DEBUG; $ERROR = ""; @@ -844,6 +844,10 @@ SQL::Translator - manipulate structured data definitions (SQL and more) =head1 DESCRIPTION +This documentation covers the API for SQL::Translator. For a more general +discussion of how to use the modules and scripts, please see +L. + SQL::Translator is a group of Perl modules that converts vendor-specific SQL table definitions into other formats, such as other vendor-specific SQL, ER diagrams, documentation (POD and HTML), @@ -857,10 +861,6 @@ via the built-in object model. Presently only the definition parts of SQL are handled (CREATE, ALTER), not the manipulation of data (INSERT, UPDATE, DELETE). -This documentation covers the API for SQL::Translator. For a more general -discussion of how to use the modules and scripts, please see -L. - =head1 CONSTRUCTOR The constructor is called C, and accepts a optional hash of options.