DBIx::DBSchema - Database-independent schema objects |
DBIx::DBSchema - Database-independent schema objects
use DBIx::DBSchema;
$schema = new DBIx::DBSchema @dbix_dbschema_table_objects; $schema = new_odbc DBIx::DBSchema $dbh; $schema = new_odbc DBIx::DBSchema $dsn, $user, $pass; $schema = new_native DBIx::DBSchema $dbh; $schema = new_native DBIx::DBSchema $dsn, $user, $pass;
$schema->save("filename"); $schema = load DBIx::DBSchema "filename" or die $DBIx::DBSchema::errstr;
$schema->addtable($dbix_dbschema_table_object);
@table_names = $schema->tables;
$DBIx_DBSchema_table_object = $schema->table("table_name");
@sql = $schema->sql($dbh); @sql = $schema->sql($dsn, $username, $password); @sql = $schema->sql($dsn); #doesn't connect to database - less reliable
$perl_code = $schema->pretty_print; %hash = eval $perl_code; use DBI qw(:sql_types); $schema = pretty_read DBIx::DBSchema \%hash;
DBIx::DBSchema objects are collections of DBIx::DBSchema::Table objects and 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 in 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 columns and tables (and, as of 0.33, indices).
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''.
The data source can be specified by passing an open DBI database handle, or by passing the DBI data source name, username and password.
Although the username and password are optional, it is best to call this method with a database handle or data source including a valid username and password - a DBI connection will be opened and used to check the database version as well as for more reliable quoting and type mapping. Note that the database connection will be used passively, not to actually run the CREATE statements.
If passed a DBI data source (or handle) such as `DBI:mysql:database' or `DBI:Pg:dbname=database', will use syntax specific to that database engine. Currently supported databases are MySQL and PostgreSQL.
If not passed a data source (or handle), or if there is no driver for the specified database, will attempt to use generic SQL syntax.
Right now this method knows how to add new tables and alter existing tables, including indices. If specifically requested by passing an options hashref with drop_tables set true before all other arguments, it will also drop tables.
See sql_alter_table in the DBIx::DBSchema::Table manpage, sql_add_coumn in the DBIx::DBSchema::Column manpage and sql_alter_column in the DBIx::DBSchema::Column manpage for additional specifics and limitations.
The data source can be specified by passing an open DBI database handle, or by passing the DBI data source name, username and password.
Although the username and password are optional, it is best to call this method with a database handle or data source including a valid username and password - a DBI connection will be opened and used to check the database version as well as for more reliable quoting and type mapping. Note that the database connection will be used passively, not to actually run the CREATE statements.
If passed a DBI data source (or handle) such as `DBI:mysql:database' or `DBI:Pg:dbname=database', will use syntax specific to that database engine. Currently supported databases are MySQL and PostgreSQL.
If not passed a data source (or handle), or if there is no driver for the specified database, will attempt to use generic SQL syntax.
Creates a schema as specified by a data structure such as that created by pretty_print method.
Ivan Kohler <ivan-dbix-dbschema@420.am>
Charles Shapiro <charles.shapiro@numethods.com> and Mitchell Friedman <mitchell.friedman@numethods.com> contributed the start of a Sybase driver.
Daniel Hanks <hanksdc@about-inc.com> contributed the Oracle driver.
Jesse Vincent contributed the SQLite driver and fixes to quiet down internal usage of the old API.
Slaven Rezic <srezic@cpan.org> contributed column and table dropping, Pg bugfixes and more.
Contributions are welcome! I'm especially keen on any interest in the top items/projects below under BUGS.
Copyright (c) 2000-2007 Ivan Kohler Copyright (c) 2000 Mail Abuse Prevention System LLC Copyright (c) 2007 Freeside Internet Services, Inc. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Multiple primary keys are not yet supported.
Foreign keys and other constraints are not yet supported.
Eventually it would be nice to have additional transformations (deleted, modified columns). sql_update_schema doesn't deal with deleted or modified columns yet.
Need to port and test with additional databases
Each DBIx::DBSchema object should have a name which corresponds to its name within the SQL database engine (DBI data source).
pretty_print is actually pretty ugly.
pretty_print isn't so good about quoting values... save/load is a much better alternative to using pretty_print/pretty_read
pretty_read is pretty ugly too.
pretty_read should *not* create and pass in old-style unique/index indices when nothing is given in the read.
Perhaps pretty_read should eval column types so that we can use DBI
qw(:sql_types)
here instead of externally.
Need to support ``using'' index attribute in pretty_read and in reverse engineering
perhaps we should just get rid of pretty_read entirely. pretty_print is useful for debugging, but pretty_read is pretty bunk.
sql CREATE TABLE output should convert integers
(i.e. use DBI qw(:sql_types);)
to local types using DBI->type_info plus a hash
to fudge things
the DBIx::DBSchema::Table manpage, the DBIx::DBSchema::Index manpage, the DBIx::DBSchema::Column manpage, the DBIx::DBSchema::DBD manpage, the DBIx::DBSchema::DBD::mysql manpage, the DBIx::DBSchema::DBD::Pg manpage, the FS::Record manpage, the DBI manpage
DBIx::DBSchema - Database-independent schema objects |