* Thus wrote Mike Smith:
> I am trying to cache a database recordset so users can sort, etc
> without hitting the database everytime. I'm using ADODB to access a
> MSSQL database.

I wouldn't even bother with this.

No matter what you do your going to have to retreive the data
somewhere, aka sessions, and thus move the load over to the
filesystem. A hit to the database isn't much of a concern.

> 
> echo "<a href=\"{$_SERVER['PHP_SELF']}?getvar=$v\">Link</a>\n";

If the data doesn't change very frequently, you might want to
create a script that does this when the data is actually changes,
and simply include() it when needed.



Curt
-- 
Quoth the Raven, "Nevermore."

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to