Remove old TWiki pages
[openafs-wiki.git] / TWiki / CGISessionDriverSqliteDotPm.mdwn
diff --git a/TWiki/CGISessionDriverSqliteDotPm.mdwn b/TWiki/CGISessionDriverSqliteDotPm.mdwn
deleted file mode 100644 (file)
index 2a391fe..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-# <a name="Package &lt;code&gt;="></a> Package =
-
-<div>
-  <ul>
-    <li><a href="#Package =="> Package ==</a></li>
-  </ul>
-</div>
-
-=head1 NAME
-
-CGI::Session::Driver::sqlite - CGI::Session driver for SQLite
-
-=head1 SYNOPSIS
-
-$s = new CGI::Session("driver:sqlite", $sid, \{DataSource=&gt;'/my/folder/sessions.sqlt'\}); $s = new CGI::Session("driver:sqlite", $sid, \{Handle=&gt;$dbh\});
-
-=head1 DESCRIPTION
-
-B driver stores session data in SQLite files using L&lt;DBD::SQLite|DBD::SQLite&gt; DBI driver. More details see L&lt;CGI::Session::Driver::DBI|CGI::Session::Driver::DBI&gt;, its parent class.
-
-=head1 DRIVER ARGUMENTS
-
-Supported driver arguments are I and I. B only one of these arguments can be set while creating session object.
-
-I should be in the form of C&lt;dbi:SQLite:dbname=/path/to/db.sqlt&gt;. If C&lt;dbi:SQLite:&gt; is missing it will be prepended for you. If I is present it should be database handle (C&lt;$dbh&gt;) returned by L&lt;DBI::connect()|DBI/connect()&gt;.
-
-As of version 1.7 of this driver, the third argument is B optional. Using a default database in the temporary directory is a security risk since anyone on the machine can create and/or read your session data. If you understand these risks and still want the old behavior, you can set the C option to I&lt;'/tmp/sessions.sqlt'&gt;.
-
-=head1 BUGS AND LIMITATIONS
-
-None known.
-
-=head1 LICENSING
-
-For support and licensing see L&lt;CGI::Session|CGI::Session&gt;