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
It's not ideal but I wouldn't re-write my application over it. Unless your page is doing a large amount of time-consuming work in various methods, the whole page lifecycle should execute quickly. In practice it may just mean that your connection object is open a few milliseconds longer than it would have been otherwise. That might be significant in some scenarios, but it doesn't sound like it would be in your case.