views:

134

answers:

3

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

+1  A: 

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.

ChssPly76
+1  A: 

Maybe you did something foolish like this.

duffymo
ha, no didn't do that, but mine did fail for the same reason as that one did though
Soldier.moth
A: 

It seems that passing null values into the prepared statement also causes this errror.

Soldier.moth