Home > Database > Mysql Tutorial > body text

向ACCESS中的"时间/日期"字段中插入DateTime.Now时出

WBOY
Release: 2016-06-07 15:37:19
Original
961 people have browsed it

在使用下面的代码向Access 数据 库中添加 数据 的时候,如果是 日期 字段 ,则会 出现 标准 表达式 中 数据 类型 不 匹配 。的 错误 ,这可能是C#中的 日期 类型 无法直接转换成Access中的 日期 类型 OleDbType.DBDate所致: string ConnectionString = @"Pr

在使用下面的代码向Access数据库中添加数据的时候,如果是日期字段,则会出现标准表达式数据类型匹配。”的错误,这可能是C#中的日期类型无法直接转换成Access中的日期类型OleDbType.DBDate所致:

解决办法就是将上面语句中的 cmd.Parameters.AddWithValue("@CreateDate", DateTime.Now); 转换成下面的语句即可:

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template