|
|
|
Builder Programming Tips
- Dates:
When using dates, use java.sql.Date.valueOf("yyyy-mm-dd") to specify a particular date. Say for example you want to display all records whose date column value exceeds the date 2002/01/01. In the Read RDB Action, you must first specify a condition that defines that the date field is "Greater Than" java.sql.Date.valueOf("2002-01-01").
|
|