Delete Method (DataLogGrp)
- Last UpdatedNov 06, 2025
- 1 minute read
The Delete() method removes the specified data log group record from the Data_Log_Grp table.
'Declaration
Public Shared Sub Delete( _
ByVal sessionId As Integer, _
ByVal grpId As Integer, _
ByVal modId As String _
)
'Usage
Dim sessionId As Integer
Dim grpId As Integer
Dim modId As String
DataLogGrp.Delete(sessionId, grpId, modId)
Parameters
- sessionId
- Required. Holds the session ID and thus the user who is making this method call.
- grpId
- Required. Holds the ID of the data log group to be deleted.
- modId
- Optional. Holds a mod ID value to avoid data contention. The passed value must match the record's mod_id value for the record to be deleted.