BUG: CreateDynaset Holds Lock on Index if No Records Return

ID: Q153018


The information in this article applies to:
  • Microsoft Visual Basic Standard, Professional, and Enterprise Editions, 16-bit and 32-bit, for Windows, version 4.0


SYMPTOMS

After opening a Dynaset that contains no records with a SQL statement that refers to an indexed field, attempting to access that table from another application can cause the following error:

Couldn't save; currently locked by <User_Name> on machine <Machine_Name>
To work around this problem, add a call to the Idle method of the DBEngine object immediately after the call to OpenRecordset. Add the following line of code:

   DBEngine.Idle dbFreeLocks 


CAUSE

The error occurs because the Jet engine is not, by default, releasing the lock on the index page after opening the Recordset. This behavior only occurs when the Recordset returned contains no records. It occurs with Jet 2.5 and Jet 3.0, but doesn't occur with Jet 1.1.


STATUS

Microsoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article.


MORE INFORMATION

Steps To Reproduce Problem

  1. Start Visual Basic 4.0. Form1 is created by default.


  2. Open the References dialog (Tools Reference), and add a reference to either DAO 2.5 (16-bit) or DAO 3.0 (32-bit).


  3. Add a single Command button to Form1.


  4. Add the following code to the form:


  5. 
       Private Sub Command1_Click()
          Set db = OpenDatabase("BIBLIO.MDB")
          Set rs = db.OpenRecordset("Select * From Authors Where AU_ID > _
                   200", dbOpenDynaset)
       End Sub 
  6. From the Insert menu, choose Module, and insert a single code module.


  7. Add the following code to the module:


  8. 
       Global rs As Recordset
       Global db As Database 
  9. Press the F5 key or select Start from the Run menu to run the application. Click on the Command button to open the database, and create a Recordset.


  10. Start another instance of Visual Basic. From the Add-Ins menu, choose Data Manager, and start the Data Manager application.


  11. In Data Manager, open the same BIBLIO database that was opened in step 4. Open the Authors table and attempt to add a new record. When the update is attempted, Data Manager will give the error mentioned above.


Additional query words:

Keywords : kbDatabase kbVBp400 kbGrpVBDB kbDSupport
Version : WINDOWS:4.0
Platform : WINDOWS
Issue type : kbbug


Last Reviewed: July 15, 1999
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.