GolferGuy
Registered User.
- Local time
- Today, 09:18
- Joined
- Nov 5, 2007
- Messages
- 175
I am trying to set a default to a new Yes/No field to 0/False in code. I can not find the syntax that will work for a BIT data type. I have tried everything I can think of, plus I can not find any documentation for Jet SQL. Any Ideas?
So far I have tried this statement:
ALTER TABLE tblProperty ADD COLUMN Dropped bit DEFAULT 0;
withe these variations for the default value:
(0); ((0)); FALSE; false; False; '0'; "0"
None of these have worked.
So far I have tried this statement:
ALTER TABLE tblProperty ADD COLUMN Dropped bit DEFAULT 0;
withe these variations for the default value:
(0); ((0)); FALSE; false; False; '0'; "0"
None of these have worked.