PRB: DBEngine.Idle dbRefreshCache Doesn't Immediately RefreshID: Q186278
|
Application must wait (duration=PageTimeout) before being able to see changes made by other applications to a Jet database, even when using the dbRefreshCache flag of the DBEngine.Idle method.
The database object was created from a Workspace object that is not in the DBEngine.Workspaces collection.
Add the Workspace object to the DBEngine.Workspaces collection, or use the default Workspace.
This behavior is by design.
With Microsoft Jet database engine 3.5, issuing DBEngine.Idle
dbRefreshCache only flushes the cache for Database objects opened from
Workspace objects that are in the DBEngine.Workspaces collection. If the
Workspace is not in the collection, then its cached records will not be
flushed.
NOTE: In addition to refreshing the read cache, the program writing the
data must flush the lazy-write cache in order to prevent delays. This can
result in a slow-down in data access if done in areas where it is not
required. To flush the lazy-write cache, wrap the code in a transaction and
commit using the dbForceOSFlush flag, for example:
DBEngine(0).BeginTrans
' Update operation here.
DBEngine(0).CommitTrans dbForceOSFlush
Microsoft provides programming examples for illustration only, without warranty
either expressed or implied, including, but not limited to, the implied warranties of
merchantability and/or fitness for a particular purpose. This article assumes that you
are familiar with the programming language being demonstrated and the tools used to
create and debug procedures. Microsoft support professionals can help explain the functionality
of a particular procedure, but they will not modify these examples to provide added
functionality or construct procedures to meet your specific needs. If you have limited
programming experience, you may want to contact a Microsoft Certified Solution Provider
or the Microsoft fee-based consulting line at (800) 936-5200. For more information about
Microsoft Certified Solution Providers, please see the following page on the World Wide Web:
http://www.microsoft.com/mcsp/For more information about the support options available from Microsoft, please see the following page on the World Wide Web:
http://www.microsoft.com/support/supportnet/overview/overview.aspThe example provided below uses a Visual Basic 5.0 out of process ActiveX server to provide the second instance of Jet while at the same time being able to be precisely syncronized.
Option Explicit
Dim db As Database, rs As Recordset
Private Sub Class_Initialize()
Set db = DBEngine(0).OpenDatabase("nwind.mdb")
Set rs = db.OpenRecordset("Customers")
End Sub
Private Sub Class_Terminate()
rs.Close
db.Close
End Sub
Public Sub UpdateTitle(ByVal NewTitle As String)
DBEngine(0).BeginTrans
rs.Edit
rs!ContactTitle = NewTitle
rs.Update
DBEngine(0).CommitTrans dbForceOSFlush
End Sub
Option Explicit
Dim ws As Workspace, db As Database, obj As Project1.Class1
Private Sub Command1_Click()
Dim rs As Recordset, Temp As String
Dim fDone As Boolean, Counter As Long
If Me!Command1.Caption = "Operator" Then
Temp = "Programmer"
Else
Temp = "Operator"
End If
obj.UpdateTitle Temp
fDone = False
Counter = 0
Do
Counter = Counter + 1
' DBEngine.Idle dbRefreshCache
Set rs = db.OpenRecordset("Customers")
If rs!ContactTitle = Temp Then fDone = True
rs.Close
Loop Until fDone
Me!Command1.Caption = Temp
MsgBox "Took " & Counter & " retries to get the updated data."
End Sub
Private Sub Form_Load()
Set ws = DBEngine.CreateWorkspace("", "Admin", "")
' Set ws = DBEngine.CreateWorkspace("JetTest", "Admin", "")
' DBEngine.Workspaces.Append ws
Set db = ws.OpenDatabase("nwind")
Set obj = New Project1.Class1
End Sub
Private Sub Form_Unload(Cancel As Integer)
Set obj = Nothing
db.Close
ws.Close
End Sub
Additional query words: kbDSupport kbdse
Keywords : kbdta AccCon KbVBA
Version : WINDOWS:5.0,7.0,97
Platform : WINDOWS
Issue type : kbprb
Last Reviewed: July 6, 1999