1Apache::Session::BrowseUasbelre:C:oSnQtLriitbeu(t3e)d PeArplacDhoec:u:mSeenstsaitoino:n:Browseable::SQLite(3)
2
3
4
6 Apache::Session::Browseable::SQLite - An implementation of
7 Apache::Session
8
10 use Apache::Session::Browseable::SQLite;
11
12 #if you want Apache::Session to open new DB handles:
13
14 tie %hash, 'Apache::Session::Browseable::SQLite', $id, {
15 DataSource => 'dbi:Pg:dbname=sessions',
16 UserName => $db_user,
17 Password => $db_pass,
18 Commit => 1
19 };
20
21 #or, if your handles are already opened:
22
23 tie %hash, 'Apache::Session::Browseable::SQLite', $id, {
24 Handle => $dbh,
25 Commit => 1
26 };
27
28 Apache::Session::Browseable function are also available
29
31 This module is an implementation of Apache::Session. It uses the
32 SQLite backing store and no locking. See the example, and the
33 documentation for Apache::Session::Browseable::Store::SQLite for more
34 details.
35
37 The special Apache::Session argument for this module is Commit. You
38 MUST provide the Commit argument, which instructs this module to either
39 commit the transaction when it is finished, or to simply do nothing.
40 This feature is provided so that this module will not have adverse
41 interactions with your local transaction policy, nor your local
42 database handle caching policy. The argument is mandatory in order to
43 make you think about this problem.
44
46 This module was written by Xavier Guimard <x.guimard@free.fr> using
47 Apache::Session::Postgres from Jeffrey William Baker as example.
48
50 Apache::Session::Browseable
51
52
53
54perl v5.32.1 2021-01A-p2a6che::Session::Browseable::SQLite(3)