> Is there a way to force the db connection to stay open if you are
> excecuting raw sql that is creating a temp table?  When the connection
> closes...the temp tables go away.
>

Temp tables are meant to be temporary.  You can't guarantee, even with
persistent db-connection pooling that the same user would use the same
connection on the next request, so you can't guarantee that the temp
table, with the data from the previous request will be there.

What exactly are you trying to do - temporary tables are the good
solution to quite specific problems, there might be a better way to do
whatever you're attempting.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to