In our application we are dynamically filling Dropdownlists with Queries returning two columns: Text and Value.
We are now porting this feature to work with Data from an Firebird Database. Using IBExpert to test those queries, I find no way to return a column named "Value" - probably since it's a keyword.
I tried escaping Value with [Value], like in MSSQL, and "Value" or 'Value'. The query won't run. I also tried creating a view with Value as a column, but it wouldn't create the view.
We could change the code to work with different column names, but that would mean we had to change lots of queries.
The query:
SELECT BEZ AS Text, Data2 AS Value FROM SKO120 WHERE Data2 like 'V%'
as "Value"should work and it does for me.