如何处理多人操作同一数据表时出现的数据并发问题
请问如何处理多人操作同一数据表时出现的数据并发问题,急~~~~~~~~~~Public Function UpdateDate(ByRef strTb As String) As Boolean
Try
SQLAdapter = New SqlDataAdapter("SELECT * FROM " & strTb, SQLConn)
If Not (myDataSet.Tables(strTb).GetChanges Is Nothing) Then
SQLcmdBd = New SqlClient.SqlCommandBuilder(SQLAdapter)
myDataSet.EnforceConstraints = False
SQLAdapter.Update(myDataSet.Tables(strTb))
myDataSet.EnforceConstraints = True
myDataSet.Tables(strTb).AcceptChanges()
End If
Return True
Catch ex As Exception
MsgBox(ex.Message)
Return False
End Try
End Function
这是我写的一个更新数据库的一个函数,请指点。