I have a Microsoft SQL Server database that contains a data field of BIT type.
BIT
This field will have either 0 or 1 values to re
0
1
How are you extracting the fields from the database?
The SqlDataReader class has a GetBoolean method which does the translation for you:
bool yourBoolean = reader.GetBoolean(reader.GetOrdinal("Your_Bit_Column"));