附近的语法不正确

附近的语法不正确

本文介绍了system.data.dll中出现'system.data.sqlclient.sqlexception'类型的例外,但未在用户代码中处理其他信息:关键字'by'附近的语法不正确。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! public DataSet BindStates(string country) { StudentContext db = new StudentContext(); SqlConnection con = new SqlConnection(@Data Source = DE-SHREE-02; Initial Catalog = Abhijeet; Integrated Security = True); con.Open(); SqlCommand cmd = new SqlCommand(从StateTable中选择*,其中CountryName =+ country +order by Id asc,con); cmd.CommandType = CommandType.Text; SqlDataAdapter da = new SqlDataAdapter(cmd); DataSet ds = new DataSet(); da.Fill(ds); con.Close(); 返回ds; } 我的尝试: 错误在da.Fill(ds); 并且错误为{关键字'附近的语法不正确'。 } $ i希望从一个DropdownList获取数据并根据MVC中其他下拉列表中的选择生成数据解决方案 public DataSet BindStates(string country) { StudentContext db = new StudentContext(); SqlConnection con = new SqlConnection(@"Data Source=DE-SHREE-02;Initial Catalog=Abhijeet;Integrated Security=True"); con.Open(); SqlCommand cmd = new SqlCommand("Select * from StateTable where CountryName=" + country + "order by Id asc",con); cmd.CommandType = CommandType.Text; SqlDataAdapter da = new SqlDataAdapter(cmd); DataSet ds = new DataSet(); da.Fill(ds); con.Close(); return ds; }What I have tried:the error is at "da.Fill(ds);"and giving error as {"Incorrect syntax near the keyword 'by'."}i want to fetch data from one DropdownList and generate data as per selection in other dropdown list in MVC 解决方案 这篇关于system.data.dll中出现'system.data.sqlclient.sqlexception'类型的例外,但未在用户代码中处理其他信息:关键字'by'附近的语法不正确。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
09-05 23:19