Apache::Session::SQLite - use DBD::SQLite for Apache::Session storage


Apache-Session-SQLite documentation  | view source Contained in the Apache-Session-SQLite distribution.

Index


NAME

Top

Apache::Session::SQLite - use DBD::SQLite for Apache::Session storage

SYNOPSIS

Top

  use Apache::Session::SQLite;

  tie %hash, 'Apache::Session::SQLite', $id, {
      DataSource => 'dbi:SQLite:dbname=/tmp/hoge.db'};

DESCRIPTION

Top

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'};

AUTHOR

Top

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.

SEE ALSO

Top

Apache::Session, Apache::Session::Flex, DBD::SQLite


Apache-Session-SQLite documentation  | view source Contained in the Apache-Session-SQLite distribution.