SYNOPSIS
#include <opendbx/api.h>
char* odbx_column_name (odbx_result_t* result, unsigned long pos);
DESCRIPTION
odbx_column_name() gets the name of the column specified by pos in the current result set returned by odbx_result(). The column names will not change within the result set with the exception described for MySQL in odbx_column_count() when the first result set wasn't retrieved completely before odbx_result() was called again.The result parameter required by this function must be a valid result set returned by odbx_result() and must not have been feed to odbx_result_finish() before.
Valid column indices for the requested column provided via pos start with zero and end with the value returned by odbx_column_count() minus one.