README fixes caught in debian packaging by "Karl M. Hegbloom"
[DBIx-DBSchema.git] / README
1 DBIx::DBSchema
2
3 Copyright (c) 2000 Ivan Kohler
4 Copyright (c) 2000 Mail Abuse Prevention System LLC
5 All rights reserved.
6 This program is free software; you can redistribute it and/or modify it under
7 the same terms as Perl itself.
8
9 This module implements an OO-interface to database schemas.  Using this module,
10 you can create a database schema with an OO Perl interface.  You can read the
11 schema from an existing database.  You can save the schema to disk and restore
12 it from different process.  Most importantly, DBIx::DBSchema can write SQL
13 CREATE statements for different databases from a single source.
14
15 Currently supported databases are MySQL and PostgreSQL.  DBIx::DBSchema will
16 attempt to use generic SQL syntax for other databases.  Assistance adding
17 support for other databases is welcomed.
18
19 To install:
20         perl Makefile.PL
21         make
22         make test # nothing substantial yet
23         make install
24
25 Documentation will then be available via `man DBIx::DBSchema' or
26 `perldoc DBIx::DBSchema'.
27
28 Anonymous CVS access is available:
29   $ export CVSROOT=":pserver:anonymous@cleanwhisker.420.am:/home/cvs/cvsroot"
30   $ cvs login
31   (Logging in to anonymous@cleanwhisker.420.am)
32   CVS password: anonymous
33   $ cvs checkout DBIx-DBSchema
34 as well as <http://www.420.am/cgi-bin/cvsweb/DBIx-DBSchema>.
35
36 A mailing list is available.  Send a blank message to
37 <ivan-dbix-dbschema-users-subscribe@420.am>.
38
39 Homepage: <http://www.420.am/dbix-dbschema>
40
41 $Id: README,v 1.4 2001-05-13 00:18:06 ivan Exp $