Unless I'm totally wrong, we have no boolean datatype (1 bit) in Firebird, even SQL Server. Why? I think boolean usefull in various situations... And very low space consuption...
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Firebird has booleans, in the form of the http://www.firebirdsql.org/manual/migration-mssql-data-types.html FTA: Converting the bit data type The bit data type is used to hold a single boolean value, 0 or 1. MS SQL does not support assigning NULL to this fields. InterBase can emulate this with an INTEGER or a CHAR(1) data type. The acceptable values can be restricted using domains. For more information on Firebird domains, see the Data Definition documentation. |
|||||||||
|
|
Firebird 3 will have real boolean datatype: http://asfernandes.blogspot.com/2010/12/introducing-boolean-datatype.html |
|||
|
|
|
you have to create domain for it
and then alter table sometable add somefield d_boolean works perfectly at our DB :) |
|||
|
|