Function cassandra_cpp_sys::cass_statement_new [] [src]

pub unsafe extern "C" fn cass_statement_new(
    query: *const c_char,
    parameter_count: usize
) -> *mut CassStatement

Creates a new query statement.

@public @memberof CassStatement

@param[in] query The query is copied into the statement object; the memory pointed to by this parameter can be freed after this call. @param[in] parameter_count The number of bound parameters. @return Returns a statement that must be freed.

@see cass_statement_free()