tibemsSession_GetTransacted

Function

Purpose

Get the transactional semantics property of a session.

C Declaration

tibems_status tibemsSession_GetTransacted(
    tibemsSession session,
    tibems_bool* isTransacted );

COBOL Call

CALL "tibemsSession_GetTransacted"
     USING BY VALUE session,
           BY REFERENCE isTransacted,
           RETURNING tibems-status
END-CALL.
Note: session has usage pointer.

Parameters

Parameter Description
session Get the property from this session.
isTransacted The function stores the property value in this location.

Remarks

When true, then the session has transaction semantics, and the session’s acknowledge mode is irrelevant.

When false, it has non-transaction semantics.