sql里面有个bit型的字段,我在c#里面写sql语句: where的时候,怎么表示这个bit型的数据?

select * frin table where id=0 这种也能查出来的呀
2024-12-04 20:48:47
推荐回答(2个)
回答1:

我举个例子让你看看:
private void Form1_Load(object sender, System.EventArgs e)
{
string sqlConn="server=localhost;database=exe;uid=sa;pwd=";
SqlConnection conn=new SqlConnection(sqlConn);
string sel="select * from exe where id='1'";
SqlDataAdapter da=new SqlDataAdapter(sel,conn);
DataSet ds=new DataSet();
da.Fill(ds,"table1");
this.dataGrid1.DataSource=ds.Tables["table1"].DefaultView;
}

该代码是要实现在数据网格控件中显示查询到的数据表中的记录,其中该exe表的id字段正是bit类型,该类型的数据值长度为1,只能输入数字1或null来表示该类型。

回答2:

字节类被 byte类型的就行了