This is the query I am having issues with:
cmd = new OleDbCommand(insert into tbl_Customer(cReportingTime) values (@ReportingTime)", con);
cmd.Parameters.Add("@ReportingTime", OleDbType.DBTime).Value = Time;
cmd.ExecuteNonQuery();
When I try to run it I am getting this error:
"Failed to convert parameter value from a DateTime to a TimeSpan"
I want to insert only time in MS Access database however I can't seem to get it to work.
I assume your
Time
is aDateTime
, you can use it'sTimeOfDay
property like;Since
DBTYPE_DBTIME
mapped withTimeSpan
, this should work.