SimpleStatement Class |
Namespace: Dse
public class SimpleStatement : RegularStatement
The SimpleStatement type exposes the following members.
Name | Description | |
---|---|---|
SimpleStatement |
Creates a new instance of SimpleStatement without any query string or parameters.
| |
SimpleStatement(String) |
Creates a new instance of SimpleStatement with the provided CQL query.
| |
SimpleStatement(IDictionaryString, Object, String) |
Creates a new instance of SimpleStatement using a dictionary of parameters and a query with
named parameters.
| |
SimpleStatement(String, Object) |
Creates a new instance of SimpleStatement with the provided CQL query and values provided.
|
Name | Description | |
---|---|---|
AutoPage |
Determines if the RowSet returned when executing this IStatement will automatically fetch the following result pages. Defaults to true.
(Inherited from Statement.) | |
ConsistencyLevel |
Gets the consistency level for this query.
(Inherited from Statement.) | |
Host |
Gets the host configured on this Statement, or null if none is configured.
(Inherited from Statement.)In the general case, the host used to execute this Statement will depend on the configured ILoadBalancingPolicy and this property will return null. | |
IsIdempotent |
Determines if this statement is idempotent, i.e. whether it can be applied multiple times without
changing the result beyond the initial application.
(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. When the property is null, the driver will use the default value from the GetDefaultIdempotence. | |
IsTracing |
Gets whether tracing is enabled for this query or not.
(Inherited from Statement.) | |
Keyspace |
Returns the keyspace this query operates on, as set using SetKeyspace(String) (Overrides StatementKeyspace.)The keyspace returned is used as a hint for token-aware routing. | |
OutgoingPayload |
Gets custom payload for that will be included when executing this Statement.
(Inherited from Statement.) | |
PageSize |
Gets query's page size.
(Inherited from Statement.) | |
PagingState |
This object represents the next page to be fetched if the query is multi page. It can be saved and reused
later on a different execution.
(Inherited from Statement.) | |
QueryString |
Gets the query string.
(Overrides RegularStatementQueryString.) | |
QueryValues | (Inherited from Statement.) | |
ReadTimeoutMillis |
Gets the per-host read timeout for this statement.
(Inherited from Statement.)When the value is 0 or lower, the default value from the socket options will be used. | |
RetryPolicy |
Gets the retry policy sets for this query, if any.
(Inherited from Statement.) | |
RoutingKey |
Gets the routing key for the query.
(Overrides StatementRoutingKey.)Routing key can be provided using the SetRoutingValues(Object) method. | |
SerialConsistencyLevel |
Gets the serial consistency level for this query.
(Inherited from Statement.) | |
SkipMetadata | (Inherited from Statement.) | |
Timestamp |
Gets the timestamp associated with this statement execution.
(Inherited from Statement.) |
Name | Description | |
---|---|---|
Bind | Obsolete.
Sets the parameter values for the query.
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. | |
DisableTracing |
Disable tracing for the statement.
(Inherited from Statement.) | |
EnableTracing |
Enables tracing for the statement
(Inherited from Statement.) | |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
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.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
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 |
Sets the consistency level for the query. (Inherited from Statement.)The default consistency level, if this method is not called, is ConsistencyLevel.ONE. | |
SetHost |
Sets the Host that should handle this query.
(Inherited from Statement.)In the general case, use of this method is heavily discouraged and should only be used in the following cases:
Configuring a specific host causes the configured ILoadBalancingPolicy to be completely bypassed. However, if the load balancing policy dictates that the host is at distance Ignored or there is no active connectivity to the host, the request will fail with a NoHostAvailableException. | |
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 this Statement operates on. The keyspace should only be set when the
IStatement applies to a different keyspace to the logged keyspace of the
ISession.
| |
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 | ||
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. 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.
For simple partition keys, set the partition key value. For composite partition keys, set the multiple the partition key values in correct order. | |
SetSerialConsistencyLevel |
Sets the serial consistency level for the query.
The serial consistency level is only used by conditional updates (so INSERT, UPDATE
and DELETE with an IF condition). For those, the serial consistency level defines
the consistency level of the serial phase (or "paxos" phase) while the
normal consistency level defines the consistency for the "learn" phase, i.e. what
type of reads will be guaranteed to see the update right away. For instance, if
a conditional write has a regular consistency of QUORUM (and is successful), then a
QUORUM read is guaranteed to see that write. But if the regular consistency of that
write is ANY, then only a read with a consistency of SERIAL is guaranteed to see it
(even a read with consistency ALL is not guaranteed to be enough).
(Inherited from Statement.) | |
SetTimestamp |
Sets the timestamp associated with this statement execution.
If provided, this will replace the server side assigned
timestamp as default timestamp. Note that a timestamp in the query itself will still override this timestamp.
(Inherited from Statement.) | |
ToString | (Inherited from RegularStatement.) |