Product Information > JADE Developer’s Reference > Chapter 7 - Using the Database Administration Framework > BackupManager Constructor

BackupManager Constructor

create() updating;
begin
    // Create a JadeDatabaseAdmin instance.  If self is a shared
    // transient, this means we are potentially being shared between
    // processes so ensure that our dba is also shareable
    if self.isSharedTransient then
        create dba sharedTransient;
    else
        create dba transient;
    endif;
end;