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

SYNOPSIS
      use Apache::Session::SQLite;

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

DESCRIPTION
    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
    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
    the Apache::Session manpage, the Apache::Session::Flex manpage, the
    DBD::SQLite manpage