0
votes
1answer
146 views

How to configure MySQL to rollback when using TransactionScope?

I've spent a week trying to get transactions working for my MySQL database. Still no success. Running Windows 7 x64, MySQL Server 5.6.7-rc and MySQL .NET Connector 6.6.4. MySQL claims that ...
0
votes
2answers
258 views

TransactionScope yields System.Transactions.TransactionException

I have a database class with methods as shown below. Both foo and bar are all-or-nothing operations. Hence the need for transactions. Note that I'm using MySQL 5.5.21 together with MySQL .NET ...
2
votes
1answer
850 views

Database transactions in Zend Framework: Are they isolated?

Using Zend Framework, I need to (1) read a record from a MySQL database, and (2) immediately write back to that record to indicate that it has been read. I don't want other processes or queries to be ...
0
votes
2answers
528 views

EF Transactions c# MySQL connector

I was wondering what is the best way or practice to implement the following: I have a method called EditUser which has the following definition: public void EditUser(user user, Roles role) { ...
0
votes
1answer
814 views

Using TransactionScope() with NHibernate's BeginTransaction() problem

I'm using NHibernate 3.1.0 with the MySql Connector 6.3.5. As a general rule my repository methods are wrapped in an NHibernate transaction. However the service or application code calling the ...
0
votes
2answers
513 views

MySQL Connector/NET - support for transactions under Mono

Does anyone know how to get MySQL transactions working under Mono? I'm using MySQL Connector/NET (via Subsonic 3) and it works perfectly under Microsoft .NET. Recently however I tried running the ...
1
vote
5answers
4k views

Using TransactionScope with MySQL and Read Lock

I have the following situation: If have a MySQL db with a InnoDB table which I use to store unique numbers. I start a transaction, read the value (eg. 1000471), store this value in another table and ...