I would like to know if it is possible to use another transaction system in EF that it is not System.Transaction. Could I use an abstrac开发者_StackOverflow中文版tion of the system.transaction in it?
the following text is an excerpt of oracle documentation Oracle® Database PL/SQL Language Reference 11g Release 1 (11.1) :
I would like to create an interface for manipulating invoices in a transaction-like manner. The database consists of an invoices table, which holds billing information, and an invoice_lines table, wh
I have some VB.NET code that creates a TransactionScope instance: LoggingUtility.LogDebug(\"UpdateCallTable\", \"SatComCallDataImporter\", \"About to associate call data with contracts\")
Application Description I have a table which stores id\'s which represent area\'s on a map. Each map contains 1000 areas. A territory is any number of area\'s of a map that are touching. Users fight
I want to know: diff between application transaction scope and sql server transac开发者_C百科tion.
I am using (evaluating :)) Subsonic ActiveRecord mode for accessing sqLite. Need transaction to work. Regular stuff... Of ocurse!
There are some good explanations of EJB Transaction Attributes (and annotations) out there, for example, OpenEJB\'s.
I\'m looking for a way to continue execution of a transaction despite errors while inserting low-priority data. It seems like real nested transaction could be a solution, but they aren\'t supported by
I have to do queries on uncommitted changes and I tried to use transactions, but I found that it do not work if there are exceptions.