Re: Caching data from db

2000-07-28 Thread Jeff Beard
Thanks gentlemen. I thought I was correct about the behavior of my code. However, Informix uses system authentication routines and we won't allow root (the user running httpd at that point) to login remotely. Time for an expedient hack I guess. Regards, Jeff On 28 Jul 2000, David Hodgkins

Re: Caching data from db

2000-07-28 Thread David Hodgkinson
Perrin Harkins <[EMAIL PROTECTED]> writes: > On Thu, 27 Jul 2000, Jeff Beard wrote: > > I have a couple of package globals that I'd like to populate with > > information from a database when I fire up the web server > [...] > > I thought it might be as simple a declaring the variables and > > po

Re: Caching data from db

2000-07-27 Thread Perrin Harkins
On Thu, 27 Jul 2000, Jeff Beard wrote: > I have a couple of package globals that I'd like to populate with > information from a database when I fire up the web server [...] > I thought it might be as simple a declaring the variables and > populating them the first run of the program but that's no

Caching data from db

2000-07-27 Thread Jeff Beard
Hi there, I have a couple of package globals that I'd like to populate with information from a database when I fire up the web server in order to take advantage of memory sharing (they'll be used every time the program runs and I don't want to run a db query every time). I thought it might be as