0

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?

4

2 回答 2

2

您可以将字段用于 sql server 中的 1/0 值。

另:如何在 SQL Server 中创建是/否布尔字段?

于 2013-06-07T18:02:20.653 回答
2

在表中,假设您使用的是 SQL Server,您将使用该bit类型。在应用程序中,在命令中使用参数,因此您只需将布尔值传递给相应的参数。

于 2013-06-07T18:02:15.727 回答