Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • State of backup database thread
  • Directory and startup time of next backup (if backup is active)
  • Backup interval (if backup is active)
  • Directory, startup time and finished time of last backup finished.

Arguments

Return Value

...

 

Options

  

OptionComment
Option nameComment

 

Example

 

Code Block
languagecpp
 

 

See also

Filter by label (Content by label)
showLabelsfalse
showSpacefalse
cqllabel = "model" and parent = "6062220"

 

...

TypeNameComment
SdaiServerContext

serverContextId

A context identification, from edmiDefineServerContext

SdaiString

resultString

The result string with information about the backup thread and latest backup.

SdaiInvocationId

edmiInvocationId

Not yet used. When the <edmiInvocationId> is specified unequal NULL, the actual operation will be asynchronous and a handle (identifier) of the call will be returned in the <edmiInvocationId> argument.
This handle can be used in later operations for requesting the status (waiting, running, finished ..) and the result of the actual operation.

...

Return Value

...

Insert excerpt
US:_r_EDMInterface
US:_r_EDMInterface
nopaneltrue

 

Options

...

  

 

Example

...

 

Code Block
languagecpp
 EdmiError rstat;
 SdaiServerContext contextId;
 SdaiString resultString;
  
 /* Create Server Context */
 rstat = edmiDefineServerContext("MyContext",

...


 "Johnny", "Supervisor", "cf37ftr",

...

 
 "TCP", "9090", "MyServerHost",

...

 
 NULL, NULL, NULL, NULL, NULL, &contextId);

...

 
  
 /* Get current backup status */

...


 if (rstat = edmiRemoteGetBackupStatus(contextId, resultString, NULL) {

...


 printf("\nError %d in edmiRemoteGetBackupStatus: %s", rstat,

...

 
 edmiGetErrorText(rstat));

...

 
 goto error;

...

 
 }
 ...

 

See also

Filter by label (Content by label)
showLabelsfalse
showSpacefalse
cqllabel = "model" and parent = "6062220"