Class PreparedStatementIdMismatchException
This exception is thrown when the driver attempts to re-prepare a statement and the returned prepared statement's ID is different than the one on the existing PreparedStatement.
When this exception is thrown, it means that the PreparedStatement object with the ID that matches Id should not be used anymore.
Implements
Inherited Members
Namespace: Cassandra
Assembly: Cassandra.dll
Syntax
public class PreparedStatementIdMismatchException : DriverException, ISerializable
Constructors
PreparedStatementIdMismatchException(byte[], byte[])
Declaration
public PreparedStatementIdMismatchException(byte[] originalId, byte[] outputId)
Parameters
Type | Name | Description |
---|---|---|
byte[] | originalId | |
byte[] | outputId |
Properties
Id
ID of the prepared statement that should not be used anymore.
Declaration
public byte[] Id { get; }
Property Value
Type | Description |
---|---|
byte[] |