Well I found one way I can query the mySQL engine to make it convert my date strings to appropriate dates and sort based on that, it does it PERFECTLY...
Im wondering is this in some way integrateable to do custom query when sorting my date column by asc or desc or for the code purpose below...use the application menu side panel to execute this somehow? for my date ranges? Or is there just a way for dataface to display the dates using the STR_TO_DATE feature? and all operations done via asc or desc or finding are done with STR_TO_DATE?
SELECT * FROM myTable WHERE STR_TO_DATE(date,'%d/%m/%Y') <= '@dtFrom' AND STR_TO_DATE(date,'%d/%m/%Y') <= '@dtTo'
That works great for me...can this be done with dataface on one of my columns?
Thanks,
Jason