[cgiapp] CGI::Session mailing list

2002-05-21 Thread Sherzod B. Ruzmetov
I have just set up a mailing list for CGI::Session. To subscribe: http://www.ultracgis.com/mailman/listinfo/cgi-session_ultracgis.com I started receiving a lot of emails and I can't keep up with all of them. So decided a mailing list would be a way to go. Enjoy :-) -- Sherzod --

Re: [cgiapp] my / our dbh handle (best way?)

2002-05-21 Thread Sherzod B. Ruzmetov
> I tried using > $self->dbh($dbh);<- Didn't work for me > $self->query('dbh',$dbh) <- Also didn't work for me Did you try: $self->param("dbh", $dbh); ? > our $dbh= etc.< -- Works, but is this the right way? Yes, it is ok. But it creates a global variable, if that's what you