OpenDBX/API/odbx result free

From Linuxnetworks
< OpenDBX‎ | API
Revision as of 19:15, 1 October 2005 by Nose (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search


void odbx_result_free(
    odbx_result_t* result )

Description:

Deletes all resources allocated by odbx_result(). You must not free "result" by yourself because this will create memory leaks. But you have to call odbx_result_free() if the statement returned no result (indicated by return value "3"), e.g for not SELECT-like queries.

Parameters:

  • result: Object created by odbx_result()

Return values:

  • None

Errors:

  • None



Back to Overview