Was this page helpful?
A statement that has been prepared cluster-side (It has been pre-parsed and cached).
A prepared statement is read-only and it is thread-safe to concurrently bind new statements.
Public Functions
Frees a prepared instance.
prepared – [in]
Creates a bound statement from a pre-prepared statement.
See also
prepared – [in]
Returns a bound statement that must be freed.
Gets the name of a parameter at the specified index.
prepared – [in]
index – [in]
name – [out]
name_length – [out]
CASS_OK if successful, otherwise an error occurred.
Gets the data type of a parameter at the specified index.
prepared – [in]
index – [in]
Returns a reference to the data type of the parameter. Do not free this reference as it is bound to the lifetime of the prepared.
Gets the data type of a parameter for the specified name.
prepared – [in]
name – [in]
Returns a reference to the data type of the parameter. Do not free this reference as it is bound to the lifetime of the prepared.
Same as cass_prepared_parameter_data_type_by_name(), but with lengths for string parameters.
prepared – [in]
name – [in]
name_length – [in]
Returns a reference to the data type of the parameter. Do not free this reference as it is bound to the lifetime of the prepared.
Was this page helpful?
On this page