| Parse-Dia-SQL documentation | Contained in the Parse-Dia-SQL distribution. |
Parse::Dia::SQL::Output::Oracle - Create SQL for Oracle.
Parse::Dia::SQL::Output
The constructor. Arguments:
Create drop index sql for given index. Discard tablename.
| Parse-Dia-SQL documentation | Contained in the Parse-Dia-SQL distribution. |
package Parse::Dia::SQL::Output::Oracle; # $Id: Oracle.pm,v 1.2 2009/03/02 13:41:39 aff Exp $
use warnings; use strict; use Data::Dumper; use File::Spec::Functions qw(catfile); use lib q{lib}; use base q{Parse::Dia::SQL::Output}; # extends require Parse::Dia::SQL::Logger; require Parse::Dia::SQL::Const;
sub new { my ( $class, %param ) = @_; my $self = {}; # Set defaults for oracle $param{db} = q{oracle}; $param{object_name_max_length} = $param{object_name_max_length} || 30; $self = $class->SUPER::new(%param); bless( $self, $class ); return $self; }
sub _get_drop_index_sql { my ( $self, $tablename, $indexname ) = @_; return qq{drop index $indexname cascade constraints} . $self->{end_of_statement} . $self->{newline}; } 1; __END__