+# -----------------------------------------------------------
+# 0.06 2004-05-13
+# -----------------------------------------------------------
+* Added SQL::Translator::Manual
+
+* Installation process now uses Module::Build
+
+* Added new "Dumper" producer
+
* Changed the native SQL Fairy XML format to a fixed mapping.
*NB:* You should convert your existing XML schema. See the
SQL::Translator::Parser::XML::SQLFairy docs.
AUTHORS
+Build.PL
BUGS
Changes
LICENSE
lib/SQL/Translator/Producer.pm
lib/SQL/Translator/Producer/ClassDBI.pm
lib/SQL/Translator/Producer/Diagram.pm
+lib/SQL/Translator/Producer/Dumper.pm
lib/SQL/Translator/Producer/GraphViz.pm
lib/SQL/Translator/Producer/HTML.pm
lib/SQL/Translator/Producer/MySQL.pm
t/26sybase.t
t/27sqlite-parser.t
t/29html.t
+t/30sqlt-diff.t
+t/31dumper.t
+t/32schema-lookups.t
t/33tt-table-producer.t
t/data/Excel/t.xls
t/data/mysql/Apache-Session-MySQL.sql
t/data/pgsql/Chado-CV-PostGreSQL.sql
t/data/pgsql/entire_syntax.sql
t/data/sqlite/create.sql
+t/data/sqlite/create2.sql
t/data/sybase/create.sql
t/data/template/basic.tt
t/data/xml/schema.xml
t/data/template/table.tt
-META.yml Module meta-data (added by MakeMaker)
-SIGNATURE Public-key signature (added by MakeMaker)
+META.yml
+SIGNATURE
GraphViz or GD), automatic code generation (using Class::DBI),
converting non-RDBMS files to SQL schemas (xSV text files, Excel
spreadsheets), serializing parsed schemas (via Storable, YAML and
-XML), creating documentation (HTML and POD), and more. New to version
-0.03 is the ability to talk directly to a database through DBI to
+XML), creating documentation (HTML and POD), and more. We also
+have the ability to talk directly to a database through DBI to
query for the structures of several databases.
Through the separation of the code into parsers and producers with an
definition parts of SQL are handled (CREATE, ALTER), not the
manipulation of data (INSERT, UPDATE, DELETE).
-As of version 0.05, parsers exist for the following:
+As of version 0.06, parsers exist for the following:
Databases:
MySQL
INSTALLATION
-The regular method:
-
- $ perl Makefile.PL
- $ make
- $ make test
+ $ perl Build.PL
+ $ ./Build
+ $ ./Build test
$ su
- # make install
+ # ./Build install
+
+MANUAL
+
+To read the manual:
+
+ $ perldoc SQL::Translator::Manual
COPYRIGHT