1Apache::Session::SybaseU(s3e)r Contributed Perl DocumentaAtpiaocnhe::Session::Sybase(3)
2
3
4

NAME

6       Apache::Session::Sybase - An implementation of Apache::Session
7

SYNOPSIS

9        use Apache::Session::Sybase;
10
11        # if you want Apache::Session to open new DB handles:
12
13        tie %hash, 'Apache::Session::Sybase', $id, {
14           DataSource => 'dbi:Sybase:database=sessions;server=SYBASE',
15           UserName   => $db_user,
16           Password   => $db_pass,
17           Commit     => 1,
18        };
19
20        # or, if your handle is already opened:
21
22        tie %hash, 'Apache::Session::Sybase', $id, {
23           Handle     => $dbh,
24           Commit     => 0,
25        };
26

DESCRIPTION

28       This module is an implementation of Apache::Session.  It uses the
29       Sybase backing store and the Null locking scheme.  See the example, and
30       the documentation for Apache::Session::Store::Sybase (also for the
31       parameters that get passed to the backing store along with the schema
32       necessary to save the sessions) and Apache::Session::Lock::Null for
33       more details.
34

AUTHOR

36       This module was based on Apache::Session::MySQL which was written by
37       Jeffrey William Baker <jwbaker@acm.org>; it was modified by Chris
38       Winters <chris@cwinters.com>.
39

SEE ALSO

41       Apache::Session
42
43
44
45perl v5.30.1                      2020-01-29        Apache::Session::Sybase(3)
Impressum