Difference between revisions of "OpenDBX/C API/odbx column count"
From Linuxnetworks
(→Return values:) |
(see also) |
||
Line 19: | Line 19: | ||
* None | * None | ||
+ | |||
+ | = See also: = | ||
+ | |||
+ | * [[OpenDBX_column_name]] | ||
+ | * [[OpenDBX_column_type]] | ||
---- | ---- | ||
Back to [[OpenDBX API|Overview]] | Back to [[OpenDBX API|Overview]] |
Revision as of 11:56, 13 February 2007
unsigned long odbx_column_count( odbx_result_t* result )
Description:
Returns the number of columns of the current result set allocated by odbx_result(). The number of columns doesn't change within a result set.
Parameters:
- result: Pointer to object created by odbx_result()
Return values:
- Number of columns returned by the last query. The return value is zero if the query wasn't a SELECT-like query.
Errors:
- None
See also:
Back to Overview