Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:3078 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 72183 invoked from network); 1 Jul 2003 10:29:15 -0000 Received: from unknown (HELO secure.thebrainroom.com) (213.239.42.171) by pb1.pair.com with SMTP; 1 Jul 2003 10:29:15 -0000 Received: from zaneeb.brainnet.i (IDENT:root@brain.dial.nildram.co.uk [195.149.29.154]) by secure.thebrainroom.com (8.9.3/8.9.3) with ESMTP id LAA25271; Tue, 1 Jul 2003 11:29:12 +0100 Received: from TITAN (titan.brainnet.i [192.168.2.7]) by zaneeb.brainnet.i (8.11.6/8.11.6) with SMTP id h61ATBs09266; Tue, 1 Jul 2003 11:29:11 +0100 Message-ID: <066401c33fbb$9b9dcc30$0702a8c0@TITAN> To: "Derick Rethans" , "Sascha Schumann" Cc: "John Coggeshall" , References: <1056790680.5070.13.camel@coogle.localdomain> Date: Tue, 1 Jul 2003 11:29:09 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Subject: Re: [PHP-DEV] [PATCH] SQLite session storage From: wez@thebrainroom.com ("Wez Furlong") Hey John, Mail me the patch and I'll look at integrating it into the sqlite extension itself; as Derick says, it is probably the best place for it. --Wez. ----- Original Message ----- From: "Derick Rethans" To: "Sascha Schumann" Cc: "John Coggeshall" ; Sent: Tuesday, July 01, 2003 11:27 AM Subject: Re: [PHP-DEV] [PATCH] SQLite session storage > On Tue, 1 Jul 2003, Sascha Schumann wrote: > > > On Sat, 28 Jun 2003, John Coggeshall wrote: > > > > > Since SQLite will be bundled in the future, I sat down and got > > > acquainted with it by writing a module for the session extension which > > > allows users to store their session data in a SQLite database*. > > > > > > To use, just apply the patch to session.c (which adds the reference to > > > the new module and adds the mod_sqlite.c to config.m4) and compile.. To > > > use it set session.save_handler = sqlite. > > > > Sounds fine in principle. Where is the patch? > > Wouldn't it be much nicer to put this in the sqlite extension instead > because people may turn sqlite support off? php_register_session_module > should be used here IMO.