I have a form in my application which has several text boxes and I agree checkbox. In database I have to insert the data when a users fill the form. I know how to insert data from text box and other fields but I do not know how to do it for a checkbox. How to define it in table and how to define it in insert statement?
Asked
Active
Viewed 4,678 times
2 Answers
2
You can use Bit field for 1/0 values in sql server.
also : How do you create a yes/no boolean field in SQL server?