Is it alright if I took a static class that wrapped around a
SQLConnection object on a web application? Or should I make it an
instance class?
If I have a static class, would there be just one code instance of the
class in the server process/app domain for all the clients/browsers?
So, if a page on a particular request/context does a
MyConnectionClass.Close() in its Unload event handler for the Page,
would this close the connection for all clients if it were implemented
as a static class?