Mysql
 sql >> Teknologi Basis Data >  >> RDS >> Mysql

transaksi mysql di asp.net?

Saya sarankan menggunakan TransactionScope , karena Anda dapat menggunakannya apa pun DB yang Anda gunakan. Anda bahkan dapat melakukan transaksi terdistribusi (operasi terhadap beberapa database dalam transaksi yang sama) dengannya.

Anda dapat merujuk ke tautan untuk contoh kode, tetapi secara umum, Anda melakukan ini:

try
{
    using (TransactionScope scope = new TransactionScope())
    {
        using (MySqlConnection connection1 = new MySqlConnection (connectionString))
        {
            // Opening the connection automatically enlists it in the 
            // TransactionScope as a lightweight transaction.
            connection1.Open();

            // create the DB commands and perform the DB operations
            .
            .
            .

            // The Complete method commits the transaction. If an exception has been thrown,
            // Complete is not called and the transaction is rolled back.
            scope.Complete();    
        }
    }
}
catch (Exception e)
{
    // something went wrong, handle the exception accordingly. Note
    // that since we did not call TransactionScope.Complete, nothing
    // gets committed to the DB.
}


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Masukkan ke database MySQL dengan jQuery dan PHP

  2. Cara membuat hubungan di MySQL

  3. MySQL 'user_id' di mana klausa adalah masalah ambigu

  4. Akses MYSQL ditolak untuk pengguna 'root'@'localhost'

  5. Pernyataan SQL - Matriks SQL