如何在ms access中只插入时间?

How to insert only time in ms access?

这是我遇到问题的查询:

cmd = new OleDbCommand(insert into tbl_Customer(cReportingTime) values (@ReportingTime)", con);
cmd.Parameters.Add("@ReportingTime", OleDbType.DBTime).Value = Time;
cmd.ExecuteNonQuery();

当我尝试 运行 时,出现了这个错误:

"Failed to convert parameter value from a DateTime to a TimeSpan"

我只想在 MS Access 数据库中插入时间,但我似乎无法让它工作。

我假设你的TimeDateTime,你可以像TimeOfDay property一样使用它;

cmd.Parameters.Add("@ReportingTime", OleDbType.DBTime).Value = Time.TimeOfDay;

因为 DBTYPE_DBTIMETimeSpan 映射,这应该有效。