Distributed Tuning Interface Reference : PvFreeTable()
 
PvFreeTable()
Frees memory allocated by a PvGetTable() function call.
Header File: ddf.h (See also Header Files)
Function First Available In Library: w3dbav78.dll (Windows), libpsqldti.so (Linux), libpsqldti.dylib (macOS) (See also Link Libraries)
Syntax
PRESULT PvFreeTable(
    TABLEINFO*     tableProps,
    COLUMNMAP*     columnList,
    INDEXMAP*      indexList);
Arguments
 
In/Out
tableProps
Pointer to a structure containing table information
In/Out
columnList
Pointer to an array of columns defined in the table.
In/Out
indexList
Pointer to an array of segments defined in the table.
Return Values
 
PCM_Success
The operation was successful.
PCM_errFailed
A general failure occurred
Remarks
This function frees the structures created during a PvGetTable() call.
Example
PRESULT status = 0;
status = PvFreeTable(mytableProps, MyColumnList MyindexList);
See Also
PvStart()
PvOpenDatabase()
PvGetTableNames()
PvGetTable()
PvFreeTableNames()
PvCloseDictionary()
PvStop()