Tagged Questions
0
votes
2answers
277 views
Why is the Dataset Designer throwing out of memory exceptions when saving
So I have a strongly typed dataset design that has become pretty large compared to where it started. Every so often, when I save the dataset it throws an out of memory exception. If I exit out ...
0
votes
1answer
555 views
Table adapter update in transaction scope keeps timing out
So I have a typed dataset that I have created records for from another database (Over 500,000 records!). I need to import all of these records into the other database and have the following code ...
1
vote
1answer
559 views
In my typed dataset, will the Update method run as a transaction?
I have a typed dataset for a table called People. When you call the update method of a table adapter and pass in the table, is it run as a transaction?
I'm concerned that at some point the ...
0
votes
1answer
1k views
TableAdapterManager does not contain “table adapter” and no extension method
I created a simple form that uses a typed dataset generated by Visual Studio (Express to be exact).
I altered the default "Fill" query to pull in values from a few other tables and then tried to ...
0
votes
1answer
214 views
Logging Database Row alteration
I am using a strongly typed dataset in my C# application and I would like to be able to log any changes a user makes to a row. What is the best way to do this?