CqlDelete Methods |
The CqlDelete type exposes the following members.
Name | Description | |
---|---|---|
BeginExecute |
Starts executing the statement async
(Inherited from CqlCommand.) | |
Bind | Obsolete.
Sets the parameter values for the query.
(Inherited from SimpleStatement.)The same amount of values must be provided as parameter markers in the query. Specify the parameter values by the position of the markers in the query or by name, using a single instance of an anonymous type, with property names as parameter names. | |
BindObjects | Obsolete. (Inherited from SimpleStatement.) | |
DisableTracing |
Disable tracing for the statement.
(Inherited from Statement.) | |
EnableTracing |
Enables tracing for the statement
(Inherited from Statement.) | |
EndExecute |
Starts the async executing of the statement
(Inherited from CqlCommand.) | |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
Execute |
Executes the command using the ISession.
(Inherited from CqlCommand.) | |
ExecuteAsync |
Evaluates the Linq command and executes asynchronously the cql statement.
(Inherited from CqlCommand.) | |
ExecutingAs |
Allows this statement to be executed as a different user/role than the one
currently authenticated (a.k.a. proxy execution).
(Inherited from Statement.) | |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetTable | (Inherited from CqlCommand.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
IfExists | ||
SetAutoPage |
Sets the paging behavior.
When set to true (default), the RowSet returned when executing this IStatement will automatically fetch the following result pages.
When false, the RowSet returned will only contain the rows contained in the result page and will not fetch additional pages.
(Inherited from Statement.) | |
SetConsistencyLevel | (Inherited from CqlCommand.) | |
SetIdempotence |
Sets whether this statement is idempotent.
(Inherited from Statement.)Idempotence of the statement plays a role in ISpeculativeExecutionPolicy. If a statement is not idempotent, the driver will not schedule speculative executions for it. | |
SetKeyspace |
Sets the keyspace of this SimpleStatement to be used as a hint for token-aware routing.
(Inherited from SimpleStatement.) | |
SetOutgoingPayload |
Sets a custom outgoing payload for this statement.
Each time this statement is executed, this payload will be included in the request.
Once it is set using this method, the payload should not be modified.
(Inherited from Statement.) | |
SetPageSize |
Sets the page size for this query.
The page size controls how much resulting rows will be retrieved
simultaneously (the goal being to avoid loading too much results
in memory for queries yielding large results). Please note that
while value as low as 1 can be used, it is highly discouraged to
use such a low value in practice as it will yield very poor
performance. If in doubt, leaving the default is probably a good
idea.
(Inherited from Statement.)Also note that only SELECT queries ever make use of that setting. the page size to use. If set to 0 or less, the default value will be used. To disable paging of the result set, use int.MaxValueReturn ValueType:this Query object. | |
SetPagingState |
Sets the paging state, a token representing the current page state of query used to continue paging by retrieving the following result page.
Setting the paging state will disable automatic paging.
(Inherited from Statement.) | |
SetQueryString | (Inherited from SimpleStatement.) | |
SetQueryTrace | (Inherited from CqlCommand.) | |
SetReadTimeoutMillis |
Overrides the default per-host read timeout ReadTimeoutMillis for this statement.
(Inherited from Statement.) | |
SetRetryPolicy |
Sets the retry policy to use for this query.
(Inherited from Statement.)Calling this method is only required when you want to override the default RetryPolicy set in the cluster configuration for this request. Use a IExtendedRetryPolicy implementation to cover all error scenarios. | |
SetRoutingKey |
Set the routing key for this query. (Inherited from SimpleStatement.)This method allows to manually provide a routing key for this query. It is thus optional since the routing key is only an hint for token aware load balancing policy but is never mandatory. If the partition key for the query is composite, use the #setRoutingKey(ByteBuffer...) method instead to build the routing key. | |
SetRoutingValues |
Sets the partition key values in order to route the query to the correct replicas.
(Inherited from SimpleStatement.)For simple partition keys, set the partition key value. For composite partition keys, set the multiple the partition key values in correct order. | |
SetSerialConsistencyLevel | (Inherited from CqlCommand.) | |
SetTimestamp |
Sets the timestamp associated with this statement execution.
(Inherited from CqlCommand.) | |
SetTTL |
Sets the time for data in a column to expire (TTL) for INSERT and UPDATE commands .
(Inherited from CqlCommand.) | |
ToString | (Overrides RegularStatementToString.) |