OpenDBX/C API/odbx column name

From Linuxnetworks
< OpenDBX‎ | C API
Revision as of 18:44, 1 October 2005 by Nose (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search


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