Question How to Lock specfic records using oledb

Tester_10

New member
Joined
Sep 12, 2010
Messages
1
Programming Experience
Beginner
Hi,

I'm using (mdb) access database and I need to do two action when retrieve specific records into datagrid, and my question is how it's possible to apply the following:

1- lock the retrieved records.
2- Get The username of the person who locked the records.
3- Hide the locked records for other users.

Sample about the code:
Dim con As New OleDb.OleDbConnection
Dim dbProvider As String
Dim dbSource As String
Dim ds As New DataSet
Dim da As New OleDbDataAdapter
.........

Thank you,
 
Back
Top