Difference between revisions of "OpenDBX/C API/odbx finish"
From Linuxnetworks
(→Description:) |
(→Errors:) |
||
Line 20: | Line 20: | ||
* -ODBX_ERR_PARAM: Parameter is NULL or the structure is invalid | * -ODBX_ERR_PARAM: Parameter is NULL or the structure is invalid | ||
+ | |||
+ | = See also: = | ||
+ | |||
+ | * [[OpenDBX_error]] | ||
+ | * [[OpenDBX_error_type]] | ||
+ | * [[OpenDBX_init]] | ||
---- | ---- | ||
Back to [[OpenDBX API|Overview]] | Back to [[OpenDBX API|Overview]] |
Revision as of 11:34, 13 February 2007
int odbx_finish( odbx_t* handle )
Description:
Frees all resources allocated by odbx_init(). Be sure you invoked odbx_unbind() before to avoid memory leaks.
Parameters:
- handle: Connection object created by odbx_init()
Return values:
- ODBX_ERR_SUCCESS on success
- Less than zero if an error occured
Errors:
- -ODBX_ERR_PARAM: Parameter is NULL or the structure is invalid
See also:
Back to Overview