Hi All
Can someone explain Cursor Types in ADODB VBA? Ive looked at at articles and its something along the line of moving through returns rows of data sequentially.
But the following types of Cursors seems to do the same thing for me i.e. I can still MoveNext, MovePrevious, MoveFirst etc...
So im not sure what the purpose of the following are
Thanks
Can someone explain Cursor Types in ADODB VBA? Ive looked at at articles and its something along the line of moving through returns rows of data sequentially.
But the following types of Cursors seems to do the same thing for me i.e. I can still MoveNext, MovePrevious, MoveFirst etc...
So im not sure what the purpose of the following are
Code:
rs.Open "tbl_test", CurrentProject.Connection, adOpenDynamic, adLockReadOnly
'adOpenForwardOnly
'adOpenDynamic
'adOpenKeyset
'adOpenStatic
Thanks