name
Type: String[100]
The read-only name property of the Schema class contains the schema name as a string.
The code fragment in the following example shows the use of the name property.
if global.appCount = 0 then
    beginTransaction;
    global.appCount := 1;
    commitTransaction;
    app.startApplication(currentSchema.name, app.name);
endif;
        
            