Anansi-Database-Oracle
view release on metacpan or search on metacpan
lib/Anansi/Database/Oracle.pm view on Meta::CPAN
Named parameters.
=over 4
=item AutoCommit I<(String, Optional)>
Defines whether the Oracle driver automatically saves any changes made to the
B<DATABASE>. A value of B<1> I<(one)> means changes will be saved, a value of
B<0> I<(zero)> means changes will need to be manually saved. Changes are not
saved by default.
=item DATABASE I<(String, Optional)>
The name of the Oracle database. The content of the I<ORACLE_SID> environment
variable is used by default.
=item HOSTNAME I<(String, Optional)>
The IP address of the computer where the Oracle B<DATABASE> is hosted. A value
of B<127.0.0.1> is used by default.
=item PASSWORD I<(String, Optional)>
The password of the B<USERNAME> that is accessing the Oracle database. A value
of B<undef> is used by default.
=item PORT I<(String, Optional)>
The IP address port number of the computer where the Oracle B<DATABASE> is
hosted. A value of B<1521> I<(one five two one)> is used by default.
=item PrintError I<(String, Optional)>
Defines whether the Oracle driver will use the B<warn> function. A value of B<1>
I<(one)> means errors will be output using B<warn>, a value of B<0> I<(zero)>
means errors will not be output in this way. Errors are output by default.
=item RaiseError I<(String, Optional)>
Defines whether the Oracle driver will use the B<die> function. A value of B<1>
I<(one)> means errors will be output using B<die>, a value of B<0> I<(zero)>
means errors will not be output in this way. Errors are output by default.
=item USERNAME I<(String, Optional)>
The user that is accessing the Oracle database. A value of B<undef> is used by
default.
=back
=back
Overrides L<Anansi::DatabaseComponent::connect|Anansi::DatabaseComponent/"connect">.
=cut
sub connect {
my ($self, $channel, %parameters) = @_;
return $self->SUPER::connect(
undef,
INPUT => [
{
INPUT => [
'dbi:Oracle:host=', {
DEFAULT => '127.0.0.1',
NAME => 'HOST',
REF => '',
},
';sid=', {
DEFAULT => $ENV{ORACLE_SID} || '',
NAME => 'DATABASE',
REF => '',
},
';port=', {
DEFAULT => '1521',
NAME => 'PORT',
REF => '',
}
],
REF => '',
}, {
NAME => 'USERNAME',
REF => '',
}, {
NAME => 'PASSWORD',
REF => '',
}, {
INPUT => [
{
DEFAULT => 0,
NAME => 'AutoCommit',
REF => '',
}, {
DEFAULT => 1,
NAME => 'PrintError',
REF => '',
}, {
DEFAULT => 1,
NAME => 'RaiseError',
REF => '',
}
],
REF => 'HASH',
}
],
(%parameters),
);
}
Anansi::Component::addChannel('Anansi::Database::Oracle', 'CONNECT' => 'connect');
=head2 validate
if(1 == Anansi::Database::Oracle::validate($OBJECT, undef));
if(1 == Anansi::Database::Oracle::channel($OBJECT, 'VALIDATE_AS_APPROPRIATE'));
if(1 == Anansi::Database::Oracle->validate(undef));
if(1 == Anansi::Database::Oracle->channel('VALIDATE_AS_APPROPRIATE'));
if(1 == $OBJECT->validate(undef, DRIVER => 'Oracle'));
if(1 == $OBJECT->channel('VALIDATE_AS_APPROPRIATE', DRIVER => 'Oracle'));
if(1 == Anansi::Database::Oracle->validate(undef, DRIVER => 'Oracle'));
if(1 == Anansi::Database::Oracle->channel('VALIDATE_AS_APPROPRIATE', DRIVER => 'Oracle'));
=over 4
=item self I<(Blessed Hash B<or> String, Required)>
Either an object or a string of this namespace.
=item channel I<(String, Required)>
The abstract identifier of a subroutine.
=item parameters I<(Hash, Optional)>
Named parameters.
=over 4
=item DRIVER
When the B<DRIVER> parameter is defined as I<Oracle> then this database driver
component will be used otherwise an attempt will be made to use this driver.
=back
=back
Overrides L<Anansi::DatabaseComponent::validate|Anansi::DatabaseComponent/"validate">.
=cut
sub validate {
my ($self, $channel, %parameters) = @_;
$parameters{DRIVERS} = 'Oracle';
return $self->SUPER::validate(undef, (%parameters));
}
Anansi::Component::addChannel('Anansi::Database::Oracle', 'VALIDATE_AS_APPROPRIATE' => 'validate');
=head1 NOTES
This module is designed to make it simple, easy and quite fast to code your
design in perl. If for any reason you feel that it doesn't achieve these goals
then please let me know. I am here to help. All constructive criticisms are
also welcomed.
=cut
=head1 AUTHOR
Kevin Treleaven <kevin I<AT> treleaven I<DOT> net>
=cut
1;
( run in 1.322 second using v1.01-cache-2.11-cpan-0bb4e1dffa6 )