Perl Diver 2.31
Main Environment Variables Perl Default Values Perl Config - Summary Perl Config - Full Installed Modules List Directory uptime Docs

Module Documentation
Details and documentation about a specific module, including version and documentation (if available). Note that while links to perldoc.com and search.cpan.org are provided, the module may be part of a larger distribution. If you reach a File Not Found page on either site, please try the parent module.

Apache::Session::Oracle

Name Apache::Session::Oracle
Version 1.01
Located at /usr/share/perl5/vendor_perl
File /usr/share/perl5/vendor_perl/Apache/Session/Oracle.pm
Is Core No
Search CPAN for this module Apache::Session::Oracle
Documentation Apache::Session::Oracle
Module Details Apache::Session::Oracle


NAME

Apache::Session::Oracle - An implementation of Apache::Session


SYNOPSIS

 use Apache::Session::Oracle;
 #if you want Apache::Session to open new DB handles:
 tie %hash, 'Apache::Session::Oracle', $id, {
    DataSource => 'dbi:Oracle:sessions',
    UserName   => $db_user,
    Password   => $db_pass,
    Commit     => 1
 };
 #or, if your handles are already opened:
 tie %hash, 'Apache::Session::Oracle', $id, {
    Handle => $dbh,
    Commit => 1
 };


DESCRIPTION

This module is an implementation of Apache::Session. It uses the Oracle backing store and no locking. See the example, and the documentation for Apache::Session::Store::Oracle for more details.


USAGE

The special Apache::Session argument for this module is Commit. You MUST provide the Commit argument, which instructs this module to either commit the transaction when it is finished, or to simply do nothing. This feature is provided so that this module will not have adverse interactions with your local transaction policy, nor your local database handle caching policy. The argument is mandatory in order to make you think about this problem.

This module also respects the LongReadLen argument, which specifies the maximum size of the session object. If not specified, the default maximum is 8 KB.


AUTHOR

This module was written by Jeffrey William Baker <jwbaker@acm.org>.


SEE ALSO

the Apache::Session::File manpage, the Apache::Session::Flex manpage, the Apache::Session::DB_File manpage, the Apache::Session::Postgres manpage, the Apache::Session manpage

Perl Diver brought to you by ScriptSolutions.com © 1997- 2025