updating deb changelog...
[DBIx-DBSchema.git] / README
1 DBIx::DBSchema
2
3 Copyright (c) 2000-2007 Ivan Kohler
4 Copyright (c) 2000 Mail Abuse Prevention System LLC
5 Copyright (c) 2007 Freeside Internet Services, Inc.
6 All rights reserved.
7 This program is free software; you can redistribute it and/or modify it under
8 the same terms as Perl itself.
9
10 This module implements an OO-interface to database schemas.  Using this module,
11 you can create a database schema with an OO Perl interface.  You can read the
12 schema from an existing database.  You can save the schema to disk and restore
13 it from different process.  You can write SQL CREATE statements statements for
14 different databases from a single source.  In recent versions, you can
15 transform one schema to another, adding any necessary new columns and tables
16 (and, as of 0.33, indices).
17
18 Currently supported databases are MySQL, PostgreSQL, and SQLite.  Sybase and
19 Oracle drivers are partially implemented.  DBIx::DBSchema will attempt to use
20 generic SQL syntax for other databases.  Assistance adding support for other
21 databases is welcomed.  See the DBIx::DBSchema::DBD manpage, "Driver Writer's
22 Guide and Base Class".
23
24 To install:
25         perl Makefile.PL
26         make
27         make test # nothing substantial yet
28         make install
29
30 Documentation will then be available via `man DBIx::DBSchema' or
31 `perldoc DBIx::DBSchema'.
32
33 Anonymous CVS access is available:
34   $ export CVSROOT=":pserver:anonymous@cvs.420.am:/home/cvs/cvsroot"
35   $ cvs login
36   (Logging in to anonymous@cvs.420.am)
37   CVS password: anonymous
38   $ cvs checkout DBIx-DBSchema
39 as well as <http://www.420.am/cgi-bin/viewvc.cgi/DBIx-DBSchema>.
40
41 Homepage: <http://www.420.am/dbix-dbschema>
42