I have this problem :
i have a small management program witch c# and DB Access 2016. My keyboard and my system language is in Italian . My DB Access is in English
In query I send a System.DateTime.Today.ToString("dd/MM/yyyy") date format that is for example
string update = "UPDATE RICHIESTA_IT SET RICHIESTA_IT.stato_approvazione = YES, RICHIESTA_IT.data_approvazione = #" + System.DateTime.Today.ToString("dd/MM/yyyy") + "# WHERE(((RICHIESTA_IT.ID_RichiestaIT) = " + iD_Richiesta + "))";
MessageBox.Show(update);
//qa is my object that help me to connection,query,disconnet to DB ..
qa.runNonQuery(update);
// without parametric query
// #06/04/2016#
but in access db I see
04/06/2016
This is a big problem when i read this date.
How to resolve it ?
I tried to set a mask .. but I have failed to resolve...