I have a WCF service that has a complex operationcontract that has to executed atomically i.e. either the entire operation succeeds or fails. The WCF service is hosted on IIS server in an ASP .NET app
I have two tables in my MySQL database, which were created like this: CREATE TABLE table1 ( id int auto_increment,
I am experiencing a sql timeout in my .net code.If the past is any indicator, it is usually caused by a db call not being included in the transaction.What is a good way to determine (during run-time)
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 (minus
I want to create the app modular and would like to create multiple EDMX, with just the subset to tables needed in that specific context.
I have a chain of method calls where A开发者_如何学C calls B that calls C that calls D. A and D have @Transactional annotation. but B and C doesn\'t.what is the scope of transaction boundaries in this
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 am trying to configure JSF+Spring+hibernate and I\'m tying to run a test but when I use this \"tx:annotation-driven\" on my application-context.xml file, I get this error:
I have a method which calls Membership.UpdateUser开发者_如何学编程() as well as some Roles methods along with some custom inserts, deletes of my own. Is it possible to do all this in a transaction? I
I\'m building a site and have multiple segments of code, across multiple models, that needs to run within a transaction so if one fails, the code will roll back.