1Apache::Session::SybaseU(s3e)r Contributed Perl DocumentaAtpiaocnhe::Session::Sybase(3)
2
3
4
6 Apache::Session::Sybase - An implementation of Apache::Session
7
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
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
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
41 Apache::Session
42
43
44
45perl v5.34.0 2021-07-22 Apache::Session::Sybase(3)