Delete rows based on the supplied QueryConfig. The issuer of this delete does not know how many rows were removed, or when the delete completes. Only a subset of the QueryConfig options are valid for DeleteRows, you may set: Predicate, QueryString, Table, MaxResultSetSize.

DeleteRows is effectively a snapshot query where the results of the query is the data to be deleted.

Namespace: StreamBase.LiveView.API
Assembly: StreamBase.LiveView.API (in StreamBase.LiveView.API.dll) Version: 2.2.8.5956 (2.2.8.5956)

Syntax

         
 C#  Visual Basic  Visual C++ 
void DeleteRows(
	QueryConfig config
)
Sub DeleteRows ( _
	config As QueryConfig _
)
void DeleteRows(
	QueryConfig^ config
)

Parameters

config
QueryConfig
Configuration object describing the query to execute.

Exceptions

ExceptionCondition
StreamBase.LiveView.API..::..LiveViewExceptionIf there is a problem with the query or a network issue.

See Also