ISLanguageUtils.GetDBLanguage

Description

This function returns the database language of the current configuration.

Syntax

object.GetDBLanguage()

Part Attribute Type Description
object Required
The object always implements the ISLanguageUtils interface

Return Value

string

Returns the database language of the current configuration.

Example

Display some information about the current configuration, including the database language.

Dim aLanguageUtils
Dim aMessage

Set aLanguageUtils = Profile.LanguageUtils

aMessage =_
  aLanguageUtils.FormatStr2("The current configuration has ""%0:s"" UI language and ""%1:s"" DB language",_
  aLanguageUtils.GetUILanguage, aLanguageUtils.GetDBLanguage)
   
Profile.MsgBox(aMessage)  
Note:

In Profile Client v8 on User Interface DB Language can be found in Organisation > Preferences > Health System > Database Language.

Version information

Added in v7.9.0