We need to create a small website with a database (accdb) in ASP.NET. This database will only have records added while it’s in operation (gathering survey data). Our teacher prefers to use DataSets (disconnected approach) for any database, but this is overkill for such a small website. This is why I was wondering, is there any reason not to use a connected approach (DataReader)? Can any concurrency errors occur when only inserting?
In other words: connected or disconnected approach when you only insert into the database?
The technical answer is “No”, since a disconnected approach has no meaning for an insert operation.