From: ivan Date: Wed, 30 Aug 2006 15:20:19 +0000 (+0000) Subject: Update documentation wrt supported databases and new update_schema stuff X-Git-Tag: DBIx_DBSchema_0_32~5 X-Git-Url: http://git.freeside.biz/gitweb/?p=DBIx-DBSchema.git;a=commitdiff_plain;h=2854f484933427a59f771a60f8928fb1d1b3a379 Update documentation wrt supported databases and new update_schema stuff --- diff --git a/Changes b/Changes index 10575f8..9f67fef 100644 --- a/Changes +++ b/Changes @@ -4,6 +4,8 @@ Revision history for Perl extension DBIx::DBSchema. - increment the version numbers in Column.pm and Table.pm and the "use" statements accordingly - Error reporting for load constructor + - Update documentation wrt supported databases and new update_schema + stuff 0.31 Thu Mar 30 05:28:20 PST 2006 - more schema update stuff: diff --git a/DBSchema.pm b/DBSchema.pm index 9266480..1ae57d8 100644 --- a/DBSchema.pm +++ b/DBSchema.pm @@ -55,13 +55,15 @@ represent a database schema. This module implements an OO-interface to database schemas. Using this module, you can create a database schema with an OO Perl interface. You can read the schema from an existing database. You can save the schema to disk and restore -it a different process. Most importantly, DBIx::DBSchema can write SQL -CREATE statements statements for different databases from a single source. - -Currently supported databases are MySQL and PostgreSQL. Sybase support is -partially implemented. DBIx::DBSchema will attempt to use generic SQL syntax -for other databases. Assistance adding support for other databases is -welcomed. See L, "Driver Writer's Guide and Base Class". +it a different process. You can write SQL CREATE statements statements for +different databases from a single source. In recent versions, you can +transform one schema to another, adding any necessary new columsn and tables. + +Currently supported databases are MySQL, PostgreSQL and SQLite. Sybase and +Oracle drivers are partially implemented. DBIx::DBSchema will attempt to use +generic SQL syntax for other databases. Assistance adding support for other +databases is welcomed. See L, "Driver Writer's Guide and +Base Class". =head1 METHODS diff --git a/README b/README index d5b4b6c..eb76f63 100644 --- a/README +++ b/README @@ -1,6 +1,6 @@ DBIx::DBSchema -Copyright (c) 2000-2005 Ivan Kohler +Copyright (c) 2000-2006 Ivan Kohler Copyright (c) 2000 Mail Abuse Prevention System LLC All rights reserved. This program is free software; you can redistribute it and/or modify it under @@ -9,13 +9,15 @@ the same terms as Perl itself. This module implements an OO-interface to database schemas. Using this module, you can create a database schema with an OO Perl interface. You can read the schema from an existing database. You can save the schema to disk and restore -it from different process. Most importantly, DBIx::DBSchema can write SQL -CREATE statements for different databases from a single source. +it from different process. You can write SQL CREATE statements statements for +different databases from a single source. In recent versions, you can +transform one schema to another, adding any necessary new columsn and tables. -Currently supported databases are MySQL, PostgreSQL, Oracle, Sybase and SQLite. -DBIx::DBSchema will attempt to use generic SQL syntax for other databases. -Assistance adding support for other databases is welcomed. See the -DBIx::DBSchema::DBD manpage, "Driver Writer's Guide and Base Class". +Currently supported databases are MySQL, PostgreSQL, and SQLite. Sybase and +Oracle drivers are partially implemented. DBIx::DBSchema will attempt to use +generic SQL syntax for other databases. Assistance adding support for other +databases is welcomed. See the DBIx::DBSchema::DBD manpage, "Driver Writer's +Guide and Base Class". To install: perl Makefile.PL @@ -39,4 +41,3 @@ A mailing list is available. Send a blank message to Homepage: -$Id: README,v 1.12 2006-02-16 14:19:51 ivan Exp $