Difference between revisions of "OpenDBX/C API/odbx column name"
From Linuxnetworks
(→Return values:) |
(see also) |
||
Line 22: | Line 22: | ||
* None | * None | ||
+ | |||
+ | = See also: = | ||
+ | |||
+ | * [[OpenDBX_column_count]] | ||
+ | * [[OpenDBX_column_type]] | ||
---- | ---- | ||
Back to [[OpenDBX API|Overview]] | Back to [[OpenDBX API|Overview]] |
Revision as of 11:56, 13 February 2007
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: Pointer to object created by odbx_result()
- pos: Column number within the current result set
Return values:
- Name of the column on success
- NULL if handle is invalid or pos is out of range
Errors:
- None
See also:
Back to Overview