S
sprockett
My access table has over 100 columns. When I use the CommandBuilder to
create my update statement with this option I can see that it is
creating three criteria per field in the WHERE clause.
example:
AND ((? = 1 AND `WellConfig` IS NULL) OR (`WellConfig` = ?))
When ran the Jet engine throws an error that the statement is too
complex.
Old ADO updating using RecordSets did concurrency checking in a
simlilar fashion (I suspect ) and updates this same table fine. I
assume that is because only a simple...
AND `WellConfig` = ?
....criteria was generated per field.
What am I missing?
create my update statement with this option I can see that it is
creating three criteria per field in the WHERE clause.
example:
AND ((? = 1 AND `WellConfig` IS NULL) OR (`WellConfig` = ?))
When ran the Jet engine throws an error that the statement is too
complex.
Old ADO updating using RecordSets did concurrency checking in a
simlilar fashion (I suspect ) and updates this same table fine. I
assume that is because only a simple...
AND `WellConfig` = ?
....criteria was generated per field.
What am I missing?