If you have a simple table, with information like this:
Code: Select all
ID DESCRIP
A1 Niño
A2 María
A3 Canción
A4 Mamá
A5 Euro Code is € which shows the data correctly (well, kind off, I missed the euro money character),
but if I use the same table in a dynamic dropdown, and create the dynamic table like this:
Code: Select all
-- ====================================================================================
-- Test Drop Down
-- ====================================================================================
DefineObjectInstance {
className = "DynamicTable",
name = "TestDD",
source = "sql",
selectSQLcommand = "ID,DESCRIP from QGPL.TESTDD",
resultColumnNames = { "value", "text" },
};
Happy holidays!