SmartGWT Power 2.3, using nightly build from today, 12/19/2010.
I read in post #14188 that there is a new property to support SQL Server date time formats.
What is that property and how do I set it please?
I'm using SQL Datasources and I'm seeing generated SQL WHERE clauses like this:
And I want:
Thanks much.
I read in post #14188 that there is a new property to support SQL Server date time formats.
What is that property and how do I set it please?
I'm using SQL Datasources and I'm seeing generated SQL WHERE clauses like this:
Code:
WHERE ((createdAtDayPacific >= '20101218 00:00:00' AND createdAtDayPacific IS NOT NULL) AND (createdAtDayPacific <= '20101218 03:00:00' OR createdAtDayPacific IS NULL)
Code:
WHERE ((createdAtDayPacific >= '2010-12-18 00:00:00' AND createdAtDayPacific IS NOT NULL) AND (createdAtDayPacific <= '2010-12-18 03:00:00' OR createdAtDayPacific IS NULL)
Comment