GetDbValue

string GetDbValue(int index)

Returns the database representation a domain value given its index.

Parameters

Name Description
int index The index of the database value.

Example

cEnumeration enumOrderSupplyType = cEnumeration.Get("OrderSupplyType");
for (int i = 0; i < enumOrderSupplyType.Count; i++)
{
   string nextDbValue = enumOrderSupplyType.GetDbValue(i);
   ...
}

Comments

This is equivalent client method to the database domain method <Domain>_API.Get_Db_Value(index IN NUMBER) RETURN VARCHAR2.

Returns

Returns the database representation a domain value given its index.