On Mon, 22 May 2000, Perrin Harkins wrote:
> On Mon, 22 May 2000 [EMAIL PROTECTED] wrote:
> > It seems the Apache::Session::DBI isn't actually changing anything
> > in the database, since next time I tie the session the only thing
> > it has is the _session_id I tied it with in the first place.
>
> Keep in mind that Apache::Session only writes to the database when the
> object is destroyed. Make sure it is really going out of scope.
Almost. Apache::Session will commit to the backing store when the object
goes out of scope, or when the programmer calls the save() method.
tied(%session)->save;
Cheers,
Jeffrey