I have a DS with a boolean field (among other things.)
When I create a ResultSet with this DS, and run a query with this criteria:
The allowing SQL query is generated:
Please note, that the FLAG_CLOSED field, which is a boolean field, gets a "true" string literal. However, the database contains "True" values (uppercase), so this does not find anything.
--------------------------------
Is this intended?
(This is with SmartGWT 2.1 Power.)
When I create a ResultSet with this DS, and run a query with this criteria:
Code:
criteria:{ FLAG_CLOSED:true },
Code:
SELECT ... WHERE ... (FLAG_CLOSED='true')
--------------------------------
Is this intended?
(This is with SmartGWT 2.1 Power.)
Comment