How do I change the format in which the date is stored in a database from mm/dd/yyyy to dd/mm/yyyy? As the MSHFlexGrid reads data directly from the database, its source, need to store the Date in dd/mm/yyyy format.There is no problem in reading mm/dd/yyyy in textbox as dd/mm/yyyy.Please Help!
Share
Dates are generally stored in the database in an agnostic form, they are only presented in localised formats. You need to look at the localisation setting for you system/component and/or modify your SELECT query to return the date in the format you require (although I suspect that the Grid will still present it in the US format).