我C#中需要使用到的SQL语句有变量,请问这么写可不可以?
updatenxdpjlseteducon11=(selectcount(test1)fromtestwheretest1='1')whereprid='ceshi2'其...
update nxdpjl set educon11=(select count(test1) from test where test1='1')where prid='ceshi2'
其中educon11,test1='1'是希望使用变量的地方,我写的是:
public int upnxdp(string str,int m,int n)
{
for(int i=1;i<=m;i++)
{
for(int j=1;j<=n;j++)
//数据库打开。。。。之类的操作
string update nxdpjl set "+str+""+i+""+j+"=(select count(test1) from test where test1='"+j+"')where prid='ceshi2'
//数据库关闭。。。。之类的操作
}
} 展开
其中educon11,test1='1'是希望使用变量的地方,我写的是:
public int upnxdp(string str,int m,int n)
{
for(int i=1;i<=m;i++)
{
for(int j=1;j<=n;j++)
//数据库打开。。。。之类的操作
string update nxdpjl set "+str+""+i+""+j+"=(select count(test1) from test where test1='"+j+"')where prid='ceshi2'
//数据库关闭。。。。之类的操作
}
} 展开
2个回答
展开全部
可以,不过看你的C#写的有点不太正确
string sql="update nxdpjl set "+ str + i.toString() + j.toString() + "=(select count(test1) from test where test1='"+j.toString()+"') where prid='ceshi2'";
如果有问题可以利用C#的调试工具断点跟踪一下 变量 sql的内容,把该内容放到数据库中执行一下,便很容易能找出问题所在了
string sql="update nxdpjl set "+ str + i.toString() + j.toString() + "=(select count(test1) from test where test1='"+j.toString()+"') where prid='ceshi2'";
如果有问题可以利用C#的调试工具断点跟踪一下 变量 sql的内容,把该内容放到数据库中执行一下,便很容易能找出问题所在了
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询