To be completed
Header:
#include "sdai.h"
Prototype:
EdmiError edmiGetInternalDataBN(SdaiString qualifiedString,
SdaiString userName,
SdaiString password,
SdaiUnsignedInt options,
SdaiSelect data);
Arguments:
qualifiedString |
|
userName |
Specifies the name of the user. EDMuser names are case insensitive. |
password |
Specifies the password for the actual database. The password for the database is defined by the edmiCreateDatabase function. |
options |
The <options> value should be specified as a bitwise OR, See descriptions below for available options. |
data |
|
Options: Descriptions:
SERVER_CONFIGURATION |
|
DEFAULT_VALUE |
|
DO_GETENV |
|
Returns:
A completion code of datatype EdmiError is the returned function value. The completion code has the following values:
Completion code = 0 : Operation successfully performed.
Completion code != 0: Error in operation. Completion code is an EDMinterface error code. Use edmiGetErrorText to get the error text corresponding to the error code.
EXAMPLE
SdaiAggr aggr;
SdaiInteger lowerBound;
EdmiError rstat;
. . .