NAME

MPMinus::Store::Oracle - Oracle

VERSION

Version 1.51

SYNOPSIS

use MPMinus::Store::Oracle;

# Oracle connect
my $oracle = new MPMinus::Store::Oracle (
    -m          => $m, # OPTIONAL
    -host       => '192.168.1.1',
    -database   => 'TEST',
    -user       => 'login',
    -pass       => 'password',
    -attr       => {
            RaiseError => 0,
            PrintError => 0,
        },
)

my $dbh = $oracle->connect;

my $pingstat = $oracle->ping if $oracle;

# Table select (as array)
my @result = $oracle->table($sql, @inargs);

# Table select (as hash)
my %result = $oracle->tableh($key, $sql, @inargs); # $key - primary index field name

# Record (as array)
my @result = $oracle->record($sql, @inargs);

# Record (as hash)
my %result = $oracle->recordh($sql, @inargs);

# Fiels (as scalar)
my $result = $oracle->field($sql, @inargs);

# SQL/PL-SQL
my $sth = $oracle->execute($sql, @inargs);
...
$sth->finish;

DESCRIPTION

Oracle Database independent interface for MPMinus on MPMinus::Store::DBI based.

See MPMinus::Store::DBI

EXAMPLE

use MPMinus::Store::Oracle;

my $oracle = new MPMinus::Store::Oracle (
        -name => 'mylocaldb',
        -user => 'root',
        -password => 'password'
  );

my @table = $oracle->table("select * from tablename where date = ?", "01.01.2000")

HISTORY

1.00 / 11.04.2007

Init version

1.10 / 26.03.2008

OOP style supported

1.20 / 01.04.2008

Module movied to global level

1.40 / 27.02.2009

Module movied to MPMinus level

1.51 / 19.04.2010

Added in MPMinus poject

1.41 / Wed Apr 24 14:53:38 2013 MSK

General refactoring

SEE ALSO

MPMinus::Store::DBI, CTK::DBI, Apache::DBI, DBI

AUTHOR

Serz Minus (Lepenkov Sergey) http://serzik.ru <minus@mail333.com>

COPYRIGHT

Copyright (C) 1998-2013 D&D Corporation. All Rights Reserved

LICENSE

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

See LICENSE file