T
Tony Vrolyk
I am trying to run an append query from code and am getting a "field is too
small to accept the amount of data" error on a yes/no field. If I break down
the query to its most basic parts that are causing the problem this is where
I am at
INSERT INTO Campaigns_Recipients ( Sent )
SELECT 0 AS Sent
The full query does have some real fields from real tables but this is the
part that is causing the problem.
I verified that the field Sent in table Campaigns_Recipients is in fact a
yes/no field. So isn't 0 the equivelent of false? I have the same problem if
I try to append -1, True or False as the value. I must be overlooking
something simple. Any help would be appreciated.
Tony
small to accept the amount of data" error on a yes/no field. If I break down
the query to its most basic parts that are causing the problem this is where
I am at
INSERT INTO Campaigns_Recipients ( Sent )
SELECT 0 AS Sent
The full query does have some real fields from real tables but this is the
part that is causing the problem.
I verified that the field Sent in table Campaigns_Recipients is in fact a
yes/no field. So isn't 0 the equivelent of false? I have the same problem if
I try to append -1, True or False as the value. I must be overlooking
something simple. Any help would be appreciated.
Tony