Hi All,
I don't know if I'm missing something, but my code locks (no exception)
the third time I set the data adapter's select command Transaction
property.
The code thats called looks something like:
// processing....
transaction = connection.BeginTransaction ();
dataAdapter.SelectCommand.Transaction = transaction;
// processing....
transaction.Rollback ();
The code above hangs the third time its called!
Help!
Nick