struct CassPrepared
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.
Functions
void
cass_prepared_free
( prepared )Frees a prepared instance.
CassStatement *
cass_prepared_bind
( prepared )Creates a bound statement from a pre-prepared statement.
CassError
cass_prepared_parameter_name
( prepared, index, name, name_length )Gets the name of a parameter at the specified index.
const CassDataType *
cass_prepared_parameter_data_type
( prepared, index )Gets the data type of a parameter at the specified index.
const CassDataType *
cass_prepared_parameter_data_type_by_name
( prepared, name )Gets the data type of a parameter for the specified name.
const CassDataType *
cass_prepared_parameter_data_type_by_name_n
( prepared, name, name_length )Same as CassPrepared::cass_prepared_parameter_data_type_by_name
, but with lengths for string parameters.