winFrom C# 中怎么写sql,where子句模糊查询
BLL.userInfobllUserInfo=newBLL.userInfo();Model.userInfonewFri=bllUserInfo.GetModelLi...
BLL.userInfo bllUserInfo=new BLL.userInfo();
Model.userInfo newFri=
bllUserInfo.GetModelList("userNamelike"+'%'+this.txtFriendID.Text+'%');
我这个是winform的三层,括号里的是where子句,我有点搞不清单双引号的用法 展开
Model.userInfo newFri=
bllUserInfo.GetModelList("userNamelike"+'%'+this.txtFriendID.Text+'%');
我这个是winform的三层,括号里的是where子句,我有点搞不清单双引号的用法 展开
2个回答
展开全部
没用过你这方法!我们一般使用SqlCommand的方法把写好的,能在SQL查询管理器中执行的语句或存储过程等指令直接传递给SQL并返回结果。
SqlConnection con = new SqlConnection(连接字符串);
string ss = sqlcom;
SqlCommand com = new SqlCommand(ss, con);
SqlDataAdapter da = new SqlDataAdapter(com);
DataTable dt = new DataTable();
con.Open();
da.Fill(dt);
con.Close();
sqlcom只要是能执行的SQL语句这里都能使用!
SqlConnection con = new SqlConnection(连接字符串);
string ss = sqlcom;
SqlCommand com = new SqlCommand(ss, con);
SqlDataAdapter da = new SqlDataAdapter(com);
DataTable dt = new DataTable();
con.Open();
da.Fill(dt);
con.Close();
sqlcom只要是能执行的SQL语句这里都能使用!
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询