Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们需要在 ASP.NET 中创建一个带有数据库 (accdb) 的小型网站。该数据库只会在运行时添加记录(收集调查数据)。我们的老师更喜欢对任何数据库使用 DataSets(断开连接的方法),但对于这样一个小网站来说,这太过分了。这就是为什么我想知道,是否有任何理由不使用连接方法(DataReader)?仅插入时会发生任何并发错误吗?
换句话说:连接或断开连接的方法是什么时候只插入到数据库中?
技术答案是“否”,因为断开连接的方法对插入操作没有意义。