Re: RecordCount(resolved)
Hi
I olso confus with opendynamic and open static
any one help to make clear pls, thanks
kamus
Re: RecordCount(resolved)
Wouldnt this work?
VB Code:
rs_f.CursorLocation=adUseClient
rs_f.Open "select * from FollowUp where EnqNo = " & Label1 & "", con, adOpenDynamic, adLockPessimistic
I believe this would also return the correct recordcount even if its adOpenDynamic....
Quote:
I olso confus with opendynamic and open static
any one help to make clear pls, thanks
adOpenDynamic: Dynamic cursor. Additions, changes, and deletions by other users are visible, and all types of movement through the recordset are allowed, except for bookmarks if the provider doesn't support them.
adOpenKeyset: Keyset cursor. Like a dynamic cursor, except that you can't see records that other users add, although records that other users delete are inaccessible from your recordset. Data changes by other users are still visible.