Product Documentation

c-treeDB API API for C

Previous Topic

Next Topic

ctdbFreeTable

Release resources allocated for the table handle.

Declaration

void ctdbFreeTable(CTHANDLE Handle)

Description

ctdbFreeTable() releases all resources associated with a table handle. After a call to ctdbFreeTable(), the table handle cannot be used for other operations. Note that if you release an active table’s handle (the handle of a table that is open), ctdbFreeTable() automatically closes the table and resets all record buffers associated with the table.

  • Handle [in] the Table Handle.

Returns

None.

Example


ctdbClose(hTable);

ctdbFreeTable(hTable);

See also

ctdbAllocTable(), ctdbFreeDatabase()

TOCIndex