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.

Greetings.

I have MS SQL server database that content data field of BIT type.

this field will have either 0 or 1 values to present false and true.

I want when I retrieve the data to convert the value of I got to false or true without using if-condition to convert the data to false if it is 0 or true if it is 1.

I'm wondering if there is a function in C# would do this direct by passing bit values to it?

share|improve this question

5 Answers

up vote 9 down vote accepted

Depending on how are you performing the SQL queries it may depend. For example if you have a data reader you could directly read a boolean value:

using (var conn = new SqlConnection(ConnectionString))
using (var cmd = conn.CreateCommand())
{
    conn.Open();
    cmd.CommandText = "SELECT isset_field FROM sometable";
    using (var reader = cmd.ExecuteReader())
    {
        while (reader.Read())
        {
            bool isSet = reader.GetBoolean(0);
        }
    }
}
share|improve this answer
DataReader.GetBoolean(x)

or

Convert.ToBoolean(DataRow[x])
share|improve this answer
2  
Convert.ToBoolean((byte)1); returns true – abatishchev May 4 '10 at 17:14

GetBoolean will do this automatically.

share|improve this answer

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"));
share|improve this answer

SqlDataSource from ASP.NET 2.0 returns 0 and 1 for BIT fields.

SqlDataSource from ASP.NET 4.0 returns appropriate string - Boolean.TrueString ("True") or Boolean.FalseString ("False").

share|improve this answer
1  
bit can also be NULL – Guillaume Massé Jul 13 '11 at 23:22
@Guillaume: SQL type BIT or .NET type byte? – abatishchev Jul 16 '11 at 6:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.