SQLFreeHandle function

Frees resources for a handle allocated, for UltraLite ODBC.

Syntax
UL_FN_SPEC SQLRETURN UL_FN_MOD SQLFreeHandle (
SQLSMALLINT HandleType,
SQLHANDLE Handle );
Parameters
  • HandleType   The type of handle to be allocated. UltraLite supports the following handle types:

    • SQL_HANDLE_ENV
    • SQL_HANDLE_DBC
    • SQL_HANDLE_STMT

  • Handle   The handle to be freed.

Remarks

SQLFreeHandle should be called for each handle allocated using SQLAllocHandle, when the handle is no longer needed.

See also