Everybody knows that you should close a connection immediately after you finish using it.
Due to a flaw in my domain object model design, I\'ve had to leave the conn
You should certainly keep the connection open across the lifetime of the page, if you're doing multiple queries during it. Generally, one re-uses connections across many pages, actually.