At 1:24 AM -0400 10/5/01, Philip Mak wrote: >If I'm using persistent database connections to MySQL with Apache::DBI, >what happens to temporary tables at the end of a request? Will >PerlCleanupHandler automatically delete the temporary tables for me, or do >I have to do that myself?
Not likely. Temporary tables are deleted by the MySQL server itself when your connection closes. If you're using persistent connections, the server won't know to delete the table. -- Paul DuBois, [EMAIL PROTECTED]
