A collection of column values.

Functions

CassIterator *

cass_iterator_from_row

( row )

Creates a new iterator for the specified row. This can be used to iterate over columns in a row.

Parameters:
Name Type Details
in row
Returns:
Type Details
CassIterator *

A new iterator that must be freed.

See Also:
const CassValue *

cass_row_get_column

( row, index )

Get the column value at index for the specified row.

Parameters:
Name Type Details
in row
in index
Returns:
Type Details
const CassValue *

The column value at the specified index. NULL is returned if the index is out of bounds.

const CassValue *

cass_row_get_column_by_name

( row, name )

Get the column value by name for the specified row.

Parameters:
Name Type Details
in row
in name
Returns:
Type Details
const CassValue *

The column value for the specified name. NULL is returned if the column does not exist.

const CassValue *

cass_row_get_column_by_name_n

( row, name, name_length )

Same as CassRow::cass_row_get_column_by_name, but with lengths for string parameters.

Parameters:
Name Type Details
in row
in name
in name_length
Returns:
Type Details
const CassValue *

same as CassRow::cass_row_get_column_by_name

See Also: