|
Language Sensitive Data sources |
|
|
In order to turn the data sources into the language sensitive data sources @vof(LANG) definition is used in the query. @vof(LANG) definition resolves to the language code of the page to be displayed next. Example: Assume that you have a table called countries as follows.
SELECT @vof(LANG) AS COUNTRY_NAME from countries
Before executing the query the RelDB component will resolve the @vof(LANG) symbols in it and form the query as follows. SELECT en AS COUNTRY_NAME from countries |