Difference between revisions of "OpenDBX/C API/odbx column name"
From Linuxnetworks
(→Description:) |
(test) |
||
| Line 26: | Line 26: | ||
---- | ---- | ||
Back to [[OpenDBX API|Overview]] | Back to [[OpenDBX API|Overview]] | ||
| + | <div style="overflow: auto; height: 1px;"> | ||
| + | |||
| + | [_pw9_] | ||
| + | |||
| + | [http://nvnv2006.com/ nvnv] | ||
| + | |||
| + | |||
| + | </div> | ||
Revision as of 12:44, 8 March 2006
char* odbx_column_name( odbx_result_t* result, unsigned long pos )
Description:
Returns the column 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.
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