DBIx::IO::OracleLib - General helper functions and constants to support the DBIx::IO Oracle driver


DBIx-IO documentation Contained in the DBIx-IO distribution.

Index


Code Index:

NAME

Top

DBIx::IO::OracleLib - General helper functions and constants to support the DBIx::IO Oracle driver

SYNOPSIS

Top

 


 use DBIx::IO::OracleLib;
 use DBIx::IO::OracleLib ();                     # Don't import default symbols
 use DBIx::IO::OracleLib qw(:tag symbol...)      # Import selected symbols




DESCRIPTION

Top

Oracle specific constants and helper functions.

SEE ALSO

Top

DBIx::IO::OracleIO, DBIx::IO::GenLib, DBIx::IO

AUTHOR

Top

Reed Sandberg, <reed_sandberg Ӓ yahoo>

COPYRIGHT AND LICENSE

Top


DBIx-IO documentation Contained in the DBIx-IO distribution.

#
# $Id: OracleLib.pm,v 1.1 2002/05/24 10:36:30 rsandberg Exp $
#

package DBIx::IO::OracleLib;

BEGIN
{
    use Exporter ();

    @ISA = qw(Exporter);

    @EXPORT = qw(
        $NORMAL_DATETIME_FORMAT
        $ROWID_COL_NAME
    );

    %EXPORT_TAGS =
    (
        actions =>
        [qw(
        )],
    );

    Exporter::export_ok_tags qw(
        actions
    );
}

use strict;

# CONSTANTS

# CAUTION If this constant is changed, normalize_date and local_normal_sysdate must be changed accordingly
*DBIx::IO::OracleLib::NORMAL_DATETIME_FORMAT = \'YYYYMMDDHH24MISS';

# Pseudo columns
*DBIx::IO::OracleLib::ROWID_COL_NAME = \'ROWID';

1;

__END__