早教吧作业答案频道 -->其他-->
System.Data.SqlClient.SqlException有语法错误.想请问一下,为什么总是报这个错误,原来以为是代码不标准引起的,但后来改了,还是如此.SqlConnectioncon=newSqlConnection();con.ConnectionString="server=.;uid=sa;pwd=
题目详情
System.Data.SqlClient.SqlException有语法错误.
想请问一下,为什么总是报这个错误,原来以为是代码不标准引起的,但后来改了,还是如此.
SqlConnection con = new SqlConnection();
con.ConnectionString = "server=.;uid=sa;pwd=123;database=order";
con.Open();
SqlCommand cmd = new SqlCommand("select country as 国家,golds as 金牌榜,slivers as 银牌榜 from win_order",con);
SqlDataAdapter da = new SqlDataAdapter();
da.SelectCommand =cmd;
DataSet ds=new DataSet ();
da.Fill (ds," win_order");
con.Close();
gv_gold.DataSource = ds;
gv_gold.DataBind();
究竟是哪里不对.
想请问一下,为什么总是报这个错误,原来以为是代码不标准引起的,但后来改了,还是如此.
SqlConnection con = new SqlConnection();
con.ConnectionString = "server=.;uid=sa;pwd=123;database=order";
con.Open();
SqlCommand cmd = new SqlCommand("select country as 国家,golds as 金牌榜,slivers as 银牌榜 from win_order",con);
SqlDataAdapter da = new SqlDataAdapter();
da.SelectCommand =cmd;
DataSet ds=new DataSet ();
da.Fill (ds," win_order");
con.Close();
gv_gold.DataSource = ds;
gv_gold.DataBind();
究竟是哪里不对.
▼优质解答
答案和解析
很明显 是sql 语句错误.
你把你的查询语句放到查询分析器里看看,是不是提示语法错误?
把 国家 等中文加上单引号 ,改成
"select country as '国家',golds as '金牌榜',slivers as '银牌榜' from win_order"
你把你的查询语句放到查询分析器里看看,是不是提示语法错误?
把 国家 等中文加上单引号 ,改成
"select country as '国家',golds as '金牌榜',slivers as '银牌榜' from win_order"
看了 System.Data.Sq...的网友还看了以下:
帮忙看下这句话有什么语法错误I'mtobeateacher这句话如果没有错误那他和I'mateac 2020-05-14 …
I often see the young man to walk his dog in the 2020-05-16 …
I was absent from work last week.请问这里这个句型是“主系表”句型 2020-05-16 …
请帮我找出句子中错误的地方括号里的三处有一处是错的分别有A、B、C个括号,一共有5句话选出来错误的 2020-05-23 …
I'mafraidthisproblemisbeyondme这句话是否有语法上的错误I'mafra 2020-05-23 …
短文改错thankyouverymuchforinvitemetoyourbirthdaypart 2020-07-18 …
if(i==1||i==2||i=3)//(这步错了,i有波浪线)表达式必须是可修改的左值 2020-07-23 …
英语改错题I‘dlikenoodleswithmuttonandtomatointhem.改错谢谢. 2020-10-29 …
帮我改正下面的英文如果有些语法或什么错误请帮我改正,写那个正确的句子出来.well.teacherr 2020-11-01 …
=IF(MOD(MOD(A1-1,9)+1,2),"合单","合双")这方法出错了,谁能把这公式完善 2020-11-27 …