Tagged Questions
0
votes
1answer
143 views
TransactionScope with Typed Dataset
Is it possible to use TransactionScope with a Typed Dataset?
as in:
using (var transaction = new TransactionScope())
{
typedDataSet.DeleteStuff(id);
typedDataSet2.DeleteSomeOtherStuff(id2);
...
0
votes
1answer
552 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
555 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 ...
5
votes
2answers
2k views
Transactions in Typed DataSets
Have a typed dataset with several related tables, and relations defined between those tables. As I process a datafeed, I'm adding, modifying, and removing records, then calling update on each table.
...
1
vote
1answer
987 views
Using TransactionScope with typed dataset
I have a WinForm application querying SqlCe database using typed-dataset tabledapters. I have a main form assembly and a database assembly which handles every db operation. I'm having problems with ...
0
votes
1answer
110 views
Pass current transaction or use DependentClone?
I have a WinForm application which uses SqlServer CE 3.5 as database. I use typed dataset queries for db operations. I need to use transactions for this operations. The problem is, they're scattered ...
1
vote
1answer
1k views
Transactions with typed dataset and Sql Server CE
I have a WinForms application that interacts with a SqlCe local database. I manage db operations using BindingSources, TableAdapters and typed datasets.I have several operations scattered through ...