Bài viết này tham chiếu tới các không gian tên Microsoft .NET Framework Class Library sau đây:
-
System.Data
-
System.Data.OleDb
-
System.Data.SqlClient
Triệu chứng
Khi bạn sử dụng Nhà cung cấp Microsoft OLE DB cho SQL Server (OLEDBSQL) trong ADO.NET, nếu bạn tìm cách bắt đầu nhiều giao dịch trong một phiên, bạn sẽ nhận được thông báo lỗi sau đây:
System.Data.OleDb.OleDbException: Không thể bắt đầu thêm các giao dịch trên phiên này
Nguyên nhân
Theo thiết kế, Nhà cung cấp OLE DB cho SQL Server không cho phép các giao dịch lồng nhau.
Thông tin Bổ sung
Các bước để Tái tạo Hành vi
-
Khởi động Microsoft Visual Studio .NET.
-
Tạo dự Windows Application trong Visual Basic.NET. Form1 được tạo theo mặc định.
-
Bấm đúp vào Biểu mẫu1 để mở cửa sổ Mã.
-
Thay thế mã trong Form1 bằng mã sau đây:
Imports System.Data
Imports System.Data.OleDb Imports System.Data.SqlClient Public Class Form1 Inherits System.Windows.Forms.Form Dim cn As New OleDb.OleDbConnection() Dim cmd As New OleDb.OleDbCommand() Dim mycmd As New OleDb.OleDbCommand() #Region " Windows Form Designer generated code " Public Sub New() MyBase.New() 'This call is required by the Windows Form Designer. InitializeComponent() 'Add any initialization after the InitializeComponent() call End Sub 'Form overrides dispose to clean up the component list. Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean) If disposing Then If Not (components Is Nothing) Then components.Dispose() End If End If MyBase.Dispose(disposing) End Sub 'Required by the Windows Form Designer Private components As System.ComponentModel.Container 'NOTE: The following procedure is required by the Windows Form Designer 'It can be modified using the Windows Form Designer. 'Do not modify it using the code editor. <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent() ' 'Form1 ' Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13) Me.ClientSize = New System.Drawing.Size(292, 273) Me.Name = "Form1" Me.Text = "Form1" End Sub #End Region Private Sub Form1_Load(ByVal sender As System.Object, _ ByVal e As System.EventArgs) Handles MyBase.Load cn.ConnectionString = "Provider=SQLOLEDB;Data Source=YourServer;" & _ "Initial Catalog=pubs;User ID=YourUserID;Password=YourPassword" cn.Open() cmd.Connection = cn mycmd.Connection = cn cmd.CommandText = "Insert into stores (stor_id) values('9876')" Dim myTrans As OleDb.OleDbTransaction myTrans = cn.BeginTransaction(IsolationLevel.ReadCommitted) cmd.Transaction = myTrans Try cmd.ExecuteNonQuery() myTrans.Begin() myTrans.Commit() Catch ex As Exception MessageBox.Show(ex.ToString) End Try End Sub End Class -
Sửa đổi chuỗi kết nối phù hợp với môi trường của bạn.
-
Chạy ứng dụng. Lưu ý rằng bạn nhận được lỗi được liệt kê trong mục "Triệu chứng".
Tham khảo
Để biết thêm thông tin, hãy bấm vào số bài viết dưới đây để xem bài viết trong Cơ sở Tri thức Microsoft:
306649 PRB: Lỗi khi bạn Thực hiện Giao dịch Lồng với Nhà cung cấp OLE DB cho nhà cung SQL cấp