Hallo,
I'm developing a web interface to a MS Access database with ASP.NET 3.5. There are about 10 users. I guess that each of them will have a look into the database 20 times per day and will add about 20 new records per day.
Now I'm thinking about the best way to handle the connections to the database.
Keeping a single connection during the whole session does not seem to be a good idea as a session might last a whole day.
But is it ok to open a new connection for each SQL command?
Is there any other possibility?
Thanks in advance,
Anna