pub unsafe extern "C" fn cass_statement_bind_decimal_by_name(
    statement: *mut CassStatement,
    name: *const c_char,
    varint: *const cass_byte_t,
    varint_size: usize,
    scale: cass_int32_t
) -> CassError
Expand description

Binds a “decimal” 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] varint The value is copied into the statement object; the memory pointed to by this parameter can be freed after this call. @param[in] varint_size @param[in] scale @return CASS_OK if successful, otherwise an error occurred.