[.net] Various questions regarding database apps using C#

Started by
-1 comments, last by dadads 16 years, 11 months ago
Hi all, I'm a novice programmer with little practical experience, and I'm currently trying to develop a database application using C#/.NET. One thing I noticed when using ADO.NET is that it lags for 3-5 seconds whenever I try to update the database using the "tableAdapter.update(dataSet.myTable)" method, even when the table I'm trying to update only contains 3 rows. The main problem I need to solve is how to remove this annoying lag out of my program, because I don't appreciate that. One possible solution is to save all changes in an intermediate dataset, and update the database only when the user closes the program. But it has alot of flaws, and I'm not sure what other solutions are possible.

This topic is closed to new replies.

Advertisement