Difference between revisions of "OpenDBX/C API/odbx capabilities"
From Linuxnetworks
(→Parameters:) |
(see also) |
||
Line 27: | Line 27: | ||
* -ODBX_ERR_PARAM: handle is NULL or invalid | * -ODBX_ERR_PARAM: handle is NULL or invalid | ||
+ | |||
+ | = See also: = | ||
+ | |||
+ | * [[OpenDBX_init]] | ||
---- | ---- | ||
Back to [[OpenDBX API|Overview]] | Back to [[OpenDBX API|Overview]] |
Revision as of 11:38, 13 February 2007
int odbx_capabilities( odbx_t* handle, unsigned int cap )
Description:
Asks the backend if a capability set is implemented. This function can be called at each stage after odbx_init() returns successfully.
Parameters:
- handle: Connection object created by odbx_init()
- cap: Capability sets listed below
Valid capability sets are:
- ODBX_CAP_BASIC: Core set implemented by all backends
Return values:
- One if capability is supported
- Zero if capability is not supported
- Less than zero if an error occured
Errors:
- -ODBX_ERR_PARAM: handle is NULL or invalid
See also:
Back to Overview