DeleteAll Method (DataLog16)
- Last UpdatedNov 06, 2025
- 1 minute read
The DeleteAll() method removes one or more data log records from the Data_Log table, as specified by the filter parameters. Passing no filter parameters will remove all data log records from the table.
Note: The methods in the DataLog16 class should not be used. They have been replaced by the DataLog class methods.
'Declaration
Public Shared Sub DeleteAll( _
ByVal sessionId As Integer, _
ByVal rowId As Nullable(Of Integer) _
)
'Usage
Dim sessionId As Integer
Dim rowId As Nullable(Of Integer)
DataLog16.DeleteAll(sessionId, rowId)
public static void DeleteAll(
int sessionId,
Nullable<int> rowId
)
Parameters
- sessionId
- Required. Holds the session ID and thus the user who is making this method call.
- rowId
- Optional. Holds the row ID of the data log record to be deleted.