SE_connection_get_release |
Returns the ArcSDE release version number for this connection
LONG SE_connection_get_release (SE_CONNECTION connection, SE_RELEASE *rls_version);
connection | The connection handle |
rls_version | The pointer to an SE_RELEASE structure |
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;
SE_SUCCESS
SE_INVALID_CONNECTION
SE_NET_FAILURE
SE_INVALID_POINTER
SE_SDE_NOT_STARTED