How do I format the string result of DateTime.Now in C# for insertion into a MySQL database table column of type DATETIME?
I have tried the following without any suc
Use a parameterized MySqlCommand rather than building your own query and pass a DateTime to as the parameter. No formatting necessary.