Se lavori con MySqlCommand
classe, dovresti essere in grado di utilizzare un DateTime
con il seguente costrutto:
using (var command = connection.CreateCommand())
{
command.CommandText = "INSERT INTO table (dateTimeColumn) VALUES (@1)";
command.Parameters.AddWithValue("@1", DateTime.Now);
command.ExecuteNonQuery();
}
Ciò dovrebbe garantire che la data e l'ora siano archiviate correttamente.