Jess Robinson > SQL-Translator-0.09001 > SQL::Translator::Producer::Oracle

Download:
SQL-Translator-0.09001.tar.gz

Dependencies

Annotate this POD

CPAN RT

New  51
Open  14
View Bugs
Report a bug
Module Version: 1.34   Source   Latest Release: SQL-Translator-0.11003

NAME ^

SQL::Translator::Producer::Oracle - Oracle SQL producer

SYNOPSIS ^

  use SQL::Translator;

  my $t = SQL::Translator->new( parser => '...', producer => 'Oracle' );
  print $translator->translate( $file );

DESCRIPTION ^

Creates an SQL DDL suitable for Oracle.

producer_args ^

delay_constraints

This option remove the primary key and other key constraints from the CREATE TABLE statement and adds ALTER TABLEs at the end with it.

CREDITS ^

Mad props to Tim Bunce for much of the logic stolen from his "mysql2ora" script.

AUTHOR ^

Ken Y. Clark <kclark@cpan.org>.

SEE ALSO ^

SQL::Translator, DDL::Oracle, mysql2ora.