From: Ken Youens-Clark Date: Wed, 4 Feb 2004 17:51:00 +0000 (+0000) Subject: Added reference to manual, fixed copyright. X-Git-Tag: v0.06~215 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=db7232be59a1a6f0cbe95bda27a7cb675e4818bb;p=dbsrgits%2FSQL-Translator.git Added reference to manual, fixed copyright. --- diff --git a/lib/SQL/Translator.pm b/lib/SQL/Translator.pm index de3d65c..72e7554 100644 --- a/lib/SQL/Translator.pm +++ b/lib/SQL/Translator.pm @@ -1,11 +1,9 @@ package SQL::Translator; # ---------------------------------------------------------------------- -# $Id: Translator.pm,v 1.50 2004-02-02 20:30:35 allenday Exp $ +# $Id: Translator.pm,v 1.51 2004-02-04 17:51:00 kycl4rk Exp $ # ---------------------------------------------------------------------- -# Copyright (C) 2003 Ken Y. Clark , -# darren chamberlain , -# Chris Mungall +# Copyright (C) 2003 The SQLFairy Authors # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as @@ -29,7 +27,7 @@ use base 'Class::Base'; require 5.004; $VERSION = '0.04'; -$REVISION = sprintf "%d.%02d", q$Revision: 1.50 $ =~ /(\d+)\.(\d+)/; +$REVISION = sprintf "%d.%02d", q$Revision: 1.51 $ =~ /(\d+)\.(\d+)/; $DEBUG = 0 unless defined $DEBUG; $ERROR = ""; @@ -849,6 +847,10 @@ 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.