标题:C#中查询语句中的数据类型
只看楼主
ybh24138227
Rank: 1
等 级:新手上路
帖 子:32
专家分:0
注 册:2014-12-8
结帖率:81.82%
已结贴  问题点数:20 回复次数:3 
C#中查询语句中的数据类型
                string s="select yw from 移位密码 where sz=d";
                SqlConnection ds1 = new SqlConnection(ConfigurationManager.ConnectionStrings["connString"].ConnectionString);

                ds1.Open();
                SqlCommand bs1 = new SqlCommand(ssql2, ds1);
               
                string str1 = Convert.ToString(bs1.ExecuteScalar());
                ds1.Close();
    其中移位密码表中yw是varchar类型,sz是int类型运行的着色部分显示列名 'd' 无效。请问该怎么解决啊!
    求各位大哥帮助
2015-12-08 22:07
over1230
Rank: 8Rank: 8
等 级:贵宾
威 望:25
帖 子:113
专家分:897
注 册:2009-10-9
得分:10 
sz是int型,那d就应该是个变量了,变量就不要加到引号里面去了.
int  d=3;
string s="select yw from 移位密码 where sz=" + d;

不用变量的话,就是
string s="select yw from 移位密码 where sz=3";
2015-12-09 08:25
JLennon
Rank: 2
等 级:论坛游民
威 望:1
帖 子:2
专家分:10
注 册:2015-7-17
得分:10 
“select yw from 移位密码 where sz=d”//这个是sqlcommand语句,你这样写传入sql server就是select yw from 移位密码 where sz=d,无法执行的
”select yw from 移位密码 where sz=“+d//加号是连接字符串的,这样传入sql server的就是select yw from 移位密码 where sz=3
2015-12-09 09:39
PlatoEternal
Rank: 1
等 级:新手上路
威 望:1
帖 子:3
专家分:0
注 册:2015-12-12
得分:0 
"select yw from 移位密码 where sz=d”
错了 应该是

"select yw from 移位密码 where sz='d'”

2015-12-12 13:51



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-460017-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.019286 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved