I am using a JDBC driver from DataDirect to connect with Salesforce's database. The driver is SQL-92 compliant.
My problem is that customSelectExpression translates to column aliases and the DataDirect's driver only changes the column's label and not the column name. When the SmartGWT framework looks for the column alias, it cannot locate the column and no values are retrieved.
It appears that the SmartGWT framework is looking for the column name instead of the column label for the alias name?
If SmartGWT is looking for column name, how should I force SmartGWT framework to use column label instead of the column name?
My problem is that customSelectExpression translates to column aliases and the DataDirect's driver only changes the column's label and not the column name. When the SmartGWT framework looks for the column alias, it cannot locate the column and no values are retrieved.
It appears that the SmartGWT framework is looking for the column name instead of the column label for the alias name?
If SmartGWT is looking for column name, how should I force SmartGWT framework to use column label instead of the column name?
Comment