Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,027

HOME > ASP.NET > ASP.NET MySQL (MySql.Data.MySqlClient) > ASP.NET MySQL Transaction (BeginTransaction,Commit,Rollback)



Clound SSD Virtual Server

ASP.NET MySQL Transaction (BeginTransaction,Commit,Rollback)

ASP.NET MySQL Transaction (BeginTransaction,Commit,Rollback) ตัวอย่างการเขียนโปรแกรม ASP.NET กับ MySQL ในการเรียกใช้งาน Transaction ควบคุมและตรวจสอบความถูกต้องของข้อมูลก่อนที่จะมีการกระทำการใด ๆ กับ Database

เพิ่มเติม
ในการใช้งาน Transaction จะต้องกำหนดชนิดของ Table เป็นแบบ InnoDB

InnoDB Syntax
CREATE TABLE `customer` (
.
.
.
.
) ENGINE=InnoDB;



ตัวอย่าง
ตัวอย่างนี้จะเป็นการเพิ่มข้อมูล โดยผมได้สมมุติการเพิ่มข้อมูลซ้ำ ซึ่งมี Primary Key ชื่อ CustomerID ซึ่งจะสามารถเพิ่มข้อมูลสำเร็จใน Statement แรก และ Statement ที่ 2 จะไม่สามารถเพิ่มข้อมูลได้ และเมื่อมีการ RollBack ข้อมูล Statement แรกที่ถูก Insert ไปแล้วก็จะถูกยกเลิกในทันที สำหรับการใช้ Transaction สามารถใช้ได้ทั้งการ Insert/Update Record

Instance NameSpace

VB.NET
Imports System.Data 
Imports MySql.Data.MySqlClient 


ASP.NET & MySql.Data.MySqlClient

Language Code : VB.NET || C#

AspNetMySqlTransaction.aspx

<%@ import Namespace="System.Data" %>
<%@ import Namespace="MySql.Data.MySqlClient" %>
<%@ Page Language="VB" %>
<script runat="server">

    Sub Page_Load(sender As Object, e As EventArgs)
    
    End Sub
    
    Sub btnSave_Click(sender As Object, e As EventArgs)        
		Dim objConn As New MySqlConnection
		Dim objCmd As New MySqlCommand
		Dim strConnString,strSQL As String
		Dim Trans As MySqlTransaction

		Me.pnlAdd.Visible = False

		strConnString = "Server=localhost;User Id=root; Password=root; Database=mydatabase; Pooling=false"
		objConn.ConnectionString = strConnString
		objConn.Open()
		

		Trans = objConn.BeginTransaction(IsolationLevel.ReadCommitted)  '*** Start Transaction ***'	

		With objCmd
		   .Connection = objConn		   		   
		   .Transaction = Trans  '*** Command & Transaction ***'
		End With

		Try
			'*** Query 1 ***'
			strSQL = "INSERT INTO customer (CustomerID,Name,Email,CountryCode,Budget,Used) " & _
			" VALUES " & _
			" ('" & Me.txtCustomerID.Text & "','" & Me.txtName.Text & "','" & Me.txtEmail.Text & "', " & _
			" '" & Me.txtCountryCode.Text & "','" & Me.txtBudget.Text & "','" & Me.txtUsed.Text & "')"

			objCmd.CommandText = strSQL
			objCmd.CommandType = CommandType.Text
			objCmd.ExecuteNonQuery()
			'*** End Query 1 ***'
					
			'*** Query 2 ***'
			strSQL = "INSERT INTO customer (CustomerID,Name,Email,CountryCode,Budget,Used) " & _
			" VALUES " & _
			" ('" & Me.txtCustomerID.Text & "','" & Me.txtName.Text & "','" & Me.txtEmail.Text & "', " & _
			" '" & Me.txtCountryCode.Text & "','" & Me.txtBudget.Text & "','" & Me.txtUsed.Text & "')"

			objCmd.CommandText = strSQL
			objCmd.CommandType = CommandType.Text
			objCmd.ExecuteNonQuery()
			'*** End Query 2 ***'				
			
			Trans.Commit()  '*** Commit Transaction ***'	
			
			Me.lblStatus.Text = "Record Inserted"
			Me.lblStatus.Visible = True
		Catch ex As Exception
			Trans.Rollback() '*** RollBack Transaction ***'

			Me.lblStatus.Visible = True
			Me.lblStatus.Text = "Record can not insert Error ("& ex.Message &")"
		End Try		
			
			
		objConn.Close()
		objConn = Nothing

    End Sub

</script>
<html>
<head>
    <title>ThaiCreate.Com ASP.NET - MySQL</title>
</head>
<body>
    <form id="form1" runat="server">
        <asp:Panel id="pnlAdd" runat="server">
            <table width="353" border="1">
                <tbody>
                    <tr>
                        <td width="102">
                            &nbsp;<asp:Label id="lblCustomerID" runat="server" text="CustomerID"></asp:Label></td>
                        <td width="235">
                            &nbsp;<asp:TextBox id="txtCustomerID" runat="server" Width="79px"></asp:TextBox>
                        </td>
                    </tr>
                    <tr>
                        <td>
                            &nbsp;<asp:Label id="lblName" runat="server" text="Name"></asp:Label></td>
                        <td>
                            &nbsp;<asp:TextBox id="txtName" runat="server" Width="177px"></asp:TextBox>
                        </td>
                    </tr>
                    <tr>
                        <td>
                            &nbsp;<asp:Label id="lblEmail" runat="server" text="Email"></asp:Label></td>
                        <td>
                            &nbsp;<asp:TextBox id="txtEmail" runat="server" Width="155px"></asp:TextBox>
                        </td>
                    </tr>
                    <tr>
                        <td>
                            &nbsp;<asp:Label id="lblCountryCode" runat="server" text="CountryCode"></asp:Label></td>
                        <td>
                            &nbsp;<asp:TextBox id="txtCountryCode" runat="server" Width="38px"></asp:TextBox>
                        </td>
                    </tr>
                    <tr>
                        <td>
                            &nbsp;<asp:Label id="lblBudget" runat="server" text="Budget"></asp:Label></td>
                        <td>
                            &nbsp;<asp:TextBox id="txtBudget" runat="server" Width="76px"></asp:TextBox>
                        </td>
                    </tr>
                    <tr>
                        <td>
                            &nbsp;<asp:Label id="lblUsed" runat="server" text="Used"></asp:Label></td>
                        <td>
                            &nbsp;<asp:TextBox id="txtUsed" runat="server" Width="76px"></asp:TextBox>
                        </td>
                    </tr>
                </tbody>
            </table>
            <br />
            <asp:Button id="btnSave" onclick="btnSave_Click" runat="server" Text="Save"></asp:Button>
            <br />
        </asp:Panel>
        <asp:Label id="lblStatus" runat="server" visible="False"></asp:Label>
    </form>
</body>
</html>


หมายเหตุ
MySQL Version จะต้อง Support Transaction








Screenshot

ASP.NET & MySql

ASP.NET & MySql


เพิ่มเติม
MySQL Database จะต้องกำหนด Type เป็น InnoDB เพื่อรองรับการทำงาน Transaction



ASP.NET MySql.Data.MySqlClient - Parameter Query


   
Share


ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท


ลองใช้ค้นหาข้อมูล


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2008-10-26 22:58:32 / 2017-03-29 10:09:41
  Download : Download  ASP.NET MySQL Transaction (BeginTransaction,Commit,Rollback)
 Sponsored Links / Related

 
ASP.NET MySQL Connect to Database
Rating :

 
ASP.NET MySQL List Table Properties
Rating :

 
ASP.NET MySQL List Record
Rating :

 
ASP.NET MySQL & OleDb (System.Data.OleDb)
Rating :

 
ASP.NET MySQL & Odbc (System.Data.Odbc)
Rating :

 
ASP.NET MySQL Random Record
Rating :

 
ASP.NET MySQL List Record Paging/Pagination
Rating :

 
ASP.NET MySQL Search Record
Rating :

 
ASP.NET MySQL Search Record Paging/Pagination
Rating :

 
ASP.NET MySQL Add/Insert Record
Rating :

 
ASP.NET MySQL Add-Insert Multiple Record
Rating :

 
ASP.NET MySQL Check Already Exists Add/Insert Record
Rating :

 
ASP.NET MySQL Edit/Update Record
Rating :

 
ASP.NET MySQL Delete Record
Rating :

 
ASP.NET MySQL Multiple Checkbox Delete Record
Rating :

 
ASP.NET MySQL and GridView, DataSource
Rating :

 
ASP.NET MySQL Database Class
Rating :

 
ASP.NET MySQL Database Class (Visual Studio .Net 2003 - .NET 1.1)
Rating :

 
ASP.NET MySQL Database Class (Visual Studio 2005,2008,2010 - .NET 2.0,3.5,4.0)
Rating :

 
ASP.NET MySQL BLOB Binary Data and Parameterized Query
Rating :


ThaiCreate.Com Forum


Comunity Forum Free Web Script
Jobs Freelance Free Uploads
Free Web Hosting Free Tools

สอน PHP ผ่าน Youtube ฟรี
สอน Android การเขียนโปรแกรม Android
สอน Windows Phone การเขียนโปรแกรม Windows Phone 7 และ 8
สอน iOS การเขียนโปรแกรม iPhone, iPad
สอน Java การเขียนโปรแกรม ภาษา Java
สอน Java GUI การเขียนโปรแกรม ภาษา Java GUI
สอน JSP การเขียนโปรแกรม ภาษา Java
สอน jQuery การเขียนโปรแกรม ภาษา jQuery
สอน .Net การเขียนโปรแกรม ภาษา .Net
Free Tutorial
สอน Google Maps Api
สอน Windows Service
สอน Entity Framework
สอน Android
สอน Java เขียน Java
Java GUI Swing
สอน JSP (Web App)
iOS (iPhone,iPad)
Windows Phone
Windows Azure
Windows Store
Laravel Framework
Yii PHP Framework
สอน jQuery
สอน jQuery กับ Ajax
สอน PHP OOP (Vdo)
Ajax Tutorials
SQL Tutorials
สอน SQL (Part 2)
JavaScript Tutorial
Javascript Tips
VBScript Tutorial
VBScript Validation
Microsoft Access
MySQL Tutorials
-- Stored Procedure
MariaDB Database
SQL Server Tutorial
SQL Server 2005
SQL Server 2008
SQL Server 2012
-- Stored Procedure
Oracle Database
-- Stored Procedure
SVN (Subversion)
แนวทางการทำ SEO
ปรับแต่งเว็บให้โหลดเร็ว


Hit Link
   







Load balance : Server 00
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่