RecordsetWrapper

  • Thread starter PC User via AccessMonster.com
  • Start date
P

PC User via AccessMonster.com

What is a RecordsetWrapper? I can't seem to find the reference library for
this? I saw a sample code and I'm curious as to what it does in case it
could be usefult to me in my code.

Function Delete(JournalSortId As Long) As Boolean
Dim rsw As New RecordsetWrapper
If rsw.OpenRecordset("tblJournalSort", "[JournalSortId] = " &
JournalSortId) Then
Delete = rsw.Delete
End If
End Function

Does anyone know about how to use a RecordsetWrapper?

Thanks,
PC
 
Top