数据库选择字段存储
我想用select语句从数据库获得1个字段,并把这个字段存储在一个变量里面,应该怎么做?比如说 "Select RID from TableDeploymentInfo where Name='" + dataGrid.CurrentRow.Cells[0].Value.ToString() + "'"
我想把这个RID存储在一个变量里面应该怎么实现? --------------------编程问答-------------------- int tempRID=Select RID from TableDeploymentInfo where Name='" + dataGrid.CurrentRow.Cells[0].Value.ToString() + "'" ; --------------------编程问答-------------------- 自己顶1个 --------------------编程问答-------------------- 2楼什么意思?不对啊
--------------------编程问答-------------------- 有没有人帮忙解决下啊? --------------------编程问答-------------------- 填充DataSet --------------------编程问答-------------------- 填充dataset,但是填充dataset是拿一个表填充而不是拿一个数据。 --------------------编程问答-------------------- declare @temp varchar(200)
Select @temp=RID from TableDeploymentInfo where Name='" + dataGrid.CurrentRow.Cells[0].Value.ToString() + "'
print @temp
补充:.NET技术 , C#