Oraperl

Oraperl is a Perl access to Oracle databases for old oraperl scripts.
Download

Oraperl Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Tim Bunce
  • Publisher web site:
  • http://search.cpan.org/~timb/Module-Dependency-1.86/lib/Module/Dependency/Indexer.pm

Oraperl Tags


Oraperl Description

Oraperl is a Perl access to Oracle databases for old oraperl scripts. Oraperl is a Perl access to Oracle databases for old oraperl scripts.SYNOPSIS eval 'use Oraperl; 1;' || die $@ if $] >= 5; # ADD THIS LINE TO OLD SCRIPTS $lda = &ora_login($system_id, $name, $password) $csr = &ora_open($lda, $stmt ) &ora_bind($csr, $var, ...) &ora_fetch($csr ) &ora_close($csr) &ora_logoff($lda) &ora_do($lda, $stmt) &ora_titles($csr) &ora_lengths($csr) &ora_types($csr) &ora_commit($lda) &ora_rollback($lda) &ora_autocommit($lda, $on_off) &ora_version() $ora_cache $ora_long $ora_trunc $ora_errno $ora_errstr $ora_verno $ora_debugOraperl is an extension to Perl which allows access to Oracle databases.The original oraperl was a Perl 4 binary with Oracle OCI compiled into it. The Perl 5 Oraperl module described here is distributed with DBD::Oracle (a database driver what operates within DBI) and adds an extra layer over DBI method calls. The Oraperl module should only be used to allow existing Perl 4 oraperl scripts to run with minimal changes; any new development should use DBI directly.The functions which make up this extension are described in the following sections. All functions return a false or undefined (in the Perl sense) value to indicate failure. You do not need to understand the references to OCI in these descriptions. They are here to help those who wish to extend the routines or to port them to new machines.The text in this document is largely unchanged from the original Perl4 oraperl manual written by Kevin Stock. Any comments specific to the DBD::Oracle Oraperl emulation are prefixed by DBD:. See the DBD::Oracle and DBI manuals for more information.DBD: In order to make the oraperl function definitions available in perl5 you need to arrange to 'use' the Oraperl.pm module in each file or package which uses them. You can do this by simply adding use Oraperl; in each file or package. If you need to make the scripts work with both the perl4 oraperl and perl5 you should add add the following text instead: eval 'use Oraperl; 1;' || die $@ if $] >= 5; Requirements: · Perl


Oraperl Related Software