From: Ian B. <ia...@co...> - 2003-04-29 20:51:44
|
On Tue, 2003-04-29 at 11:23, Nick wrote: > The reason I think something like that is so important is for web based > transactions (which I assume is what started this thread). If your > script fails for some reason, you (usually) want to roll back the entire > transaction. Which brings me to a question... is it possible to clear > out the entire object cache so you can maintain a persistant connection > over several web requests? If you pass a connection in to the constructor, then that connection's cache is used (not a global cache). So when the connection goes away, so does the cache. Ian |