Difference between revisions of "OpenDBX/C API/odbx column name"
From Linuxnetworks
(removed spam) |
(→Description:) |
||
Line 7: | Line 7: | ||
= Description: = | = Description: = | ||
− | Returns the | + | Returns the name of the column specified by "pos" in the current result set returned by [[OpenDBX_result|odbx_result()]]. The value of "pos" must be in the range from 0 to [[OpenDBX_column_count|odbx_column_count()]]-1. |
= Parameters: = | = Parameters: = |
Revision as of 12:58, 5 June 2006
char* odbx_column_name( odbx_result_t* result, unsigned long pos )
Description:
Returns the name of the column specified by "pos" in the current result set returned by odbx_result(). 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