准备好的语句失败(带有错误消息!)
当尝试将数据插入数据表时,我收到此错误
Error Saving data. [Microsoft][ODBC Microsoft Access Driver]COUNT field incorrect
我查看了相应的数据表,并且不存在名为 COUNT 的字段(隐藏或未隐藏)。 这是我应该熟悉的 SQL 术语吗?
I am getting this error when trying to insert data into a data table
Error Saving data. [Microsoft][ODBC Microsoft Access Driver]COUNT field incorrect
I looked at the appropriate data table and there does not exist a field called COUNT either hidden or not hidden. Is this some SQL terminology that I should be familiar with?
An Extension of this Question
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一条通用错误消息,通常是由不正确的语句语法(例如某处缺少引号)引起的。 如果您需要进一步的帮助,请仔细检查您的 SQL 并将其与参数/表架构一起发布在此处。
This is a generic error message which is usually caused by incorrect statement syntax (like missing quote somewhere). Double check your SQL and post it here along with parameters / table schema if you need further help.
似乎将空值传递到准备好的语句中也会导致此错误。
It seems that passing null values into the prepared statement also causes this errror.