Hello,
I use the following code to add data in the table MyTable. I am checking if exists and if is not exist i add it. Sometimes i take the error messages 3734 or 3045, that the database or the table are busy.
In the specific table write and read and other users.
What can i do?
Thank you in advance,
Dimitris
I use the following code to add data in the table MyTable. I am checking if exists and if is not exist i add it. Sometimes i take the error messages 3734 or 3045, that the database or the table are busy.
In the specific table write and read and other users.
Code:
If Nz(DLookup("[ID]", "MyTable", "[FirstName]= " & "'" & Trim(strTemp) & "'"), 0) = 0 Then
CurrentDb.Execute "INSERT INTO MyTable ([FirstName]) VALUES (" & "'" & Trim(strTemp) & "');"
End If
What can i do?
Thank you in advance,
Dimitris