Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a checkbox value in ASP.NET to save to a database.

Now the field type in SQL Server, I remember years ago using Boolean, but that's not there under SQL Server 2008 r2.

What to use now?

share|improve this question

3 Answers

up vote 0 down vote accepted

Type "Bit" is what you are looking for.

Per MSDN: "An integer data type that can take a value of 1, 0, or NULL."

Use value of 1 for true, 0 for false.

MSDN Info

share|improve this answer

BIT or tinyint. They take up the same space on disk - 1 byte, bit can be 0 or 1.

share|improve this answer

If I get you correct then.... bit is the type you are looking for.

share|improve this answer

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.