| Apache-Session-SQLite documentation | view source | Contained in the Apache-Session-SQLite distribution. |
Apache::Session::SQLite - use DBD::SQLite for Apache::Session storage
use Apache::Session::SQLite;
tie %hash, 'Apache::Session::SQLite', $id, {
DataSource => 'dbi:SQLite:dbname=/tmp/hoge.db'};
This module is equal to the following.
tie %hash,'Apache::Session::Flex',$id,{
Store => 'MySQL',
Lock => 'Null',
Generate => 'MD5',
Serialize => 'Base64',
DataSource => 'dbi:SQLite:dbname=/tmp/hoge.db'};
Kobayashi Hiroyuki <kobayasi@piano.gs>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Apache::Session, Apache::Session::Flex, DBD::SQLite
| Apache-Session-SQLite documentation | view source | Contained in the Apache-Session-SQLite distribution. |