Does the new XE2 dbExpress still have problems using Boolean fields?
Asked
Active
Viewed 1,180 times
3 Answers
2
The best way is to use a domain
CREATE DOMAIN BOOL AS
SMALLINT
DEFAULT 0
CHECK (value in (0,1) or value is null);
Regards

cadetill
- 1,552
- 16
- 24
0
Create a Char(1) field. Set values "Y" or "N"

dataol
- 999
- 3
- 19
- 42
-
**Y**=Yes(Checked), **N**=No(Unchecked) – dataol Dec 31 '12 at 22:46
-
excuse me for poor english – dataol Dec 31 '12 at 23:08