loudandclear
Programmer
Hi,
I am trying to return a recordset that will support bookmarks so I can use the paging properties (AbsolutePage, ...) But all can manage to get is a forwardonly cursor.
Here is the code:
Set adoRecSet = CreateObject("ADODB.RecordSet"
adoRecSet.CursorType = 3
adoRecSet.Open strSQL, adoConn
After the open, the cursortype is always back to 0 (forwardonly) no matter what value I give to it before.
The connection string is using an oledb for sql server provider.
Could someone please help ?
Thanks,
Chris
I am trying to return a recordset that will support bookmarks so I can use the paging properties (AbsolutePage, ...) But all can manage to get is a forwardonly cursor.
Here is the code:
Set adoRecSet = CreateObject("ADODB.RecordSet"
adoRecSet.CursorType = 3
adoRecSet.Open strSQL, adoConn
After the open, the cursortype is always back to 0 (forwardonly) no matter what value I give to it before.
The connection string is using an oledb for sql server provider.
Could someone please help ?
Thanks,
Chris