Working with a legacy project that has a date stored as a string in the format
'6/1/2013'
Example of the date range filter I'm trying to do:
table.filter := 'stringdate >= ' + QuotedStr(adatepicker.text) + ' and ' +
'stringdate <= ' + QuotedStr(enddatepicker.text);
Obviously this doesn't work. When setting a date range filter the data is incorrect because we're string sorting a date.
What are some ways I can quickly hack this to make it work while planning a later migration to a proper date data type?