GetSchemaName

Returns the value as defined by SCHEMA in the loaded EXPRESS schema.

Syntax

//
//   Strong typing definition
//
const char      * GetSchemaName(
                        SdaiModel               model,
                        const char              ** schemaName
                    );

static  inline  const char  * GetSchemaName(
                                    SdaiModel               model,
                                    char                    ** schemaName
                                )
{
    return  GetSchemaName(
                    model,
                    (const char**) schemaName
                );
}

static  inline  const char  * GetSchemaName(
                                    SdaiModel               model
                                )
{
    return  GetSchemaName(
                    model,
                    (const char**) nullptr              //    schemaName
                );
}


//
//   Weak typing definition
//
const char  __declspec(dllexport) * __stdcall   GetSchemaName(
                                                        int_t                   model,
                                                        const char              ** schemaName
                                                    );

static  inline  const char  * GetSchemaName(
                                    int_t                   model,
                                    char                    ** schemaName
                                )
{
    return  GetSchemaName(
                    model,
                    (const char**) schemaName
                );
}

static  inline  const char  * GetSchemaName(
                                    int_t                   model
                                )
{
    return  GetSchemaName(
                    model,
                    (const char**) nullptr              //    schemaName
                );
}
    

Property model

Size: 32 bit / 4 byte (value)
The handle to the model. The model handle is static during its existance. Several models can be opened simultaniously within one session. Different models are always independent, threads are allowed to be running on different models simultaniously.

Property schemaName

Size: 32 bit / 4 byte (reference)
...