SE_connection_get_release

Returns the ArcSDE release version number for this connection

Usage syntax

LONG SE_connection_get_release (SE_CONNECTION connection, SE_RELEASE *rls_version);

Parameters
connection The connection handle
rls_version The pointer to an SE_RELEASE structure
Description

SE_connection_get_release returns the ArcSDE version information for the connected ArcSDE server process. This information includes major and minor release information, as well as the DBMS system running under the ArcSDE server.

This function replaced SE_connection_get_version.

typedef struct
{
    LONG    major;             /* Major release    */
    LONG    minor;             /* Minor release    */
    LONG    bug;               /* Bug version      */
    CHAR    desc[96];          /* Description      */
    LONG    release;           /* Release Number   */
    LONG    rel_low_supported; /* Lowest Release supported */
}   SE_RELEASE;

Returns

SE_SUCCESS
SE_INVALID_CONNECTION

SE_NET_FAILURE

SE_INVALID_POINTER

SE_SDE_NOT_STARTED