OpenDBX/C API/odbx column name
From Linuxnetworks
char* odbx_column_name( odbx_result_t* result, unsigned long pos )
Description:
Returns the name of the field specified by "pos" in the current result set. The value of "pos" must be in the range from 0 to odbx_column_count()-1. In case of an error no error message is returned by odbx_error().
Parameters:
- result: Object created by odbx_result()
- pos: Column number in the current result set
Return values:
- Name of the column on success
- NULL if an error occured
Errors:
- None
Back to Overview