transactionscope
TransactionScope and Npgsql - Prepared Transaction Issue
I have following code: //... using (TransactionScope tScope = new TransactionScope()) { using (NpgsqlConnection myConnection = new NpgsqlConnection(_MyConnectionString))[详细]
2023-04-12 05:17 分类:问答Transaction Timeout exception in a console app running series containing series of SPs
I have got a console application in which I have couple of stored procedures called inside the transaction scope which looks as below.[详细]
2023-04-12 01:32 分类:问答.NET TransactionScope Timeout Issue/ EF
I have a WinForms project where i have to read massive xml-files (2gb+) and store the data in a MSSQL database.[详细]
2023-04-12 00:41 分类:问答Transaction scope with multiple connections
I have a process that requires a rollback of all updates and inserts should there be an error during any phase.So i wanted to use the TransactionScope class to accomplish this.Here is my code:[详细]
2023-04-10 18:39 分类:问答How to use DependentTransaction with EF 4.1 DbContext
How can we use DependentTransaction with EntityFramework 4.1? If you see the article \"http://stackoverflow开发者_如何学运维.com/questions/2858750/what-is-the-reason-of-transaction-context-in-use-by-a[详细]
2023-04-08 22:06 分类:问答NOLOCK with Linq to SQL without setting Transaction IsolationLevel
Is there a way to use NOLOCK on a LIN2SQL single 开发者_运维百科query without setting the Transaction IsolationLevel? I need to do this as the query part of a larger (distributed) transaction.[详细]
2023-04-08 11:41 分类:问答Using TransactionScope multiple times
Is this the correct way to use a transaction scope: I have an object which represents part of a thing:[详细]
2023-04-08 06:45 分类:问答Transaction in Stored Proc + Client Code
I have a SQL Server Sto开发者_运维百科red Procedure that creates a TRANSACTION like this: BEGIN TRY[详细]
2023-04-08 04:30 分类:问答Internal error not handled System.InvalidOperationException at System.Data.OracleClient.OracleConnection.CheckError
I have a web application and I am getting an error related to oracle. System.InvalidOperationException Internal error not handled (-2)[详细]
2023-04-06 22:33 分类:问答Can I use both session-per-web-request and TransactionScope?
You know, to implement session-per-web-request in a web application we often create a session in Application_BeginRequest and close it in Application_EndRequest global event handlers. And then every t[详细]
2023-04-05 21:31 分类:问答