I am trying to insert a query :
insert into Table(ID,Value,Date) Values('Test1', '33', '20210315 11:15:27.059')
to MariaDB using ODBC Driver (Maria 3.1) but I have this error :
Exception message : ERROR [22007] [ma-3.1.11][10.2.15-MariaDB]Incorrect datetime value: '20210315 11:15:27.059' for column 'date' at row 1 I think that this format '20210315 11:15:27.059'is unsupportable by MariaDB.
Could you please help me to change the time format from the database.
thank you.