pub unsafe extern "C" fn cass_statement_bind_collection_by_name(
    statement: *mut CassStatement,
    name: *const c_char,
    collection: *const CassCollection
) -> CassError
Expand description

Bind a “list”, “map” or “set” to all the values with the specified name.

This can only be used with statements created by cass_prepared_bind() when using Cassandra 2.0 or earlier.

@public @memberof CassStatement

@param[in] statement @param[in] name @param[in] collection The collection can be freed after this call. @return CASS_OK if successful, otherwise an error occurred.