Function cassandra_cpp_sys::cass_statement_set_paging_state_token [] [src]

pub unsafe extern "C" fn cass_statement_set_paging_state_token(
    statement: *mut CassStatement,
    paging_state: *const c_char,
    paging_state_size: usize
) -> CassError

Sets the statement's paging state. This can be used to get the next page of data in a multi-page query.

@cassandra{2.0+}

Warning: The paging state should not be exposed to or come from untrusted environments. The paging state could be spoofed and potentially used to gain access to other data.

@public @memberof CassStatement

@param[in] statement @param[in] paging_state @param[in] paging_state_size @return CASS_OK if successful, otherwise an error occurred.

@see cass_result_paging_state_token()