StevenHB13
IS-IT--Management
In a number of datawindows in my application, users have access to a free-form text box where they can enter any filter string they like. Frequently, they will use a search term like:
I'm trying to update some documentation and have been asked to address this syntax in particular. So my question is, how does PowerBuilder know that "2010-10-22" is a date and what are the rules for including date literals like this one without specific conversion? Is it based upon the fact that the left-hand value is clearly a date datatype or is it based upon the particular date format used in "2010-10-22" or both?
Code:
date(last_updated_date) = 2010-10-22
I'm trying to update some documentation and have been asked to address this syntax in particular. So my question is, how does PowerBuilder know that "2010-10-22" is a date and what are the rules for including date literals like this one without specific conversion? Is it based upon the fact that the left-hand value is clearly a date datatype or is it based upon the particular date format used in "2010-10-22" or both?