IBCTable and Filters
Posted: Sat 23 Jun 2007 06:16
Hi
I am filtering a table so that the only referenced data is with a date range.
The SQL filter applied to the TIBCTable.Filter property of
fails with an invalid filter message
whereas
is successful
The former statement using the BETWEEN keyword is more readable.
Can you confirm my findings and advise as to the use of the BETWEEN keyword. Would it be possible to have this fixed in an upcoming version please?
regards and thanks
SeaCay
I am filtering a table so that the only referenced data is with a date range.
The SQL filter applied to the TIBCTable.Filter property of
Code: Select all
TRANSDATE BETWEEN '2007/5/1' AND "2007/5/31'
whereas
Code: Select all
(TRANSDATE >= '2007/5/1') AND ((TRANSDATE >= '2007/5/31')
The former statement using the BETWEEN keyword is more readable.
Can you confirm my findings and advise as to the use of the BETWEEN keyword. Would it be possible to have this fixed in an upcoming version please?
regards and thanks
SeaCay