Method DeleteRow
DeleteRow(SLProtocol, int, string[])
Removes the specified rows from the specified table.
public static int DeleteRow(SLProtocol protocol, int tableId, string[] rows)
Parameters
protocolSLProtocolInstance that implements SLProtocol.
tableIdintThe ID of the table parameter.
rowsstring[]The primary keys of the rows to remove.
Returns
- int
The number of remaining rows in the table.
Remarks
This method acts as a wrapper for a NotifyProtocol type 156 call NT_DELETE_ROW.
DeleteRow(SLProtocol, int, int)
Removes the specified row from the specified table.
public static int DeleteRow(SLProtocol protocol, int tableId, int row)
Parameters
protocolSLProtocolInstance that implements SLProtocol.
tableIdintThe ID of the table parameter.
rowintThe index of the row.
Returns
- int
The number of remaining rows in the table.
Remarks
This method acts as a wrapper for a NotifyProtocol type 156 call NT_DELETE_ROW.
DeleteRow(SLProtocol, int, string)
Removes the specified row from the specified table.
public static int DeleteRow(SLProtocol protocol, int tableId, string rowKey)
Parameters
protocolSLProtocolInstance that implements SLProtocol.
tableIdintThe ID of the table parameter.
rowKeystringThe primary key of the row to remove.
Returns
- int
The number of remaining rows in the table.
Remarks
This method acts as a wrapper for a NotifyProtocol type 156 call NT_DELETE_ROW.