Diman
Admin
 Admin
| Posts: 1496 |  | Karma: 19 |
|
Re:bit in firebird/odbc ?
|
|
Posted: 2007/06/03 02:12 |
|
|
|
|
Hello
Firebird, AFAIK, does not have bit/boolean data types. But you can create domain in FB database, like that:
CREATE DOMAIN MyBit AS
SMALLINT
CHECK (VALUE IN (0,1))
|
And use it as bit/boolean data type.
Regards,
Dmitry
|
|