SQLFreeHandleNative typedef

SQLFreeHandleNative = SQLRETURN Function(Int16 handleType, SQLHANDLE handle)

Native signature for SQLFreeHandle. Frees resources associated with a specific environment, connection, statement, or descriptor handle.

Implementation

typedef SQLFreeHandleNative =
    SQLRETURN Function(
      Int16 handleType, // The type of handle to be freed.
      SQLHANDLE handle, // The handle to be freed.
    );