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...
Hi,
I have this SP:
CREATE Procedure sp_LCInsertSelection
(
@DisplayName varchar(100),
@LetterTypeID Int,
@Directory varchar(150),
@TargetGroupID Int,
@AdminID Int )
As
Insert into LCSelection
(DisplayName, LetterTypeID, Directory, TargetGroupID, AdminID)...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.