i use datetimepicker to save date only but when i save it to the database, it always have time with it. I custom format datetimepicker to date only dd/MM/yyyy but still gets the error it has time with it.
BTW, Date column datatype is Date
here's my save code
dtpDate.Value = Date.Now
Dim cmd As MySqlCommand = MySqlConn.CreateCommand
cmd.CommandText = String.Format("INSERT INTO teeth (Date)" &
"VALUES ('{0}')",
dtpDate.Value)