本文介绍了从命令在C#中获取int值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
string sql = "Select UserId From User where UserName='Gheorghe'";
SqlCommand cmd=new SqlCommand(sql, connection);
cmd.ExecuteScalar(); //this statement return 0
但我想获取用户的ID?
如何获得它?
but I want to get the id of user?how can I get it?
推荐答案
您需要 SqlDataReader
。
示例
Sample
string sql = "Select UserId From User where UserName='Gheorghe'";
SqlCommand cmd=new SqlCommand(sql, connection);
SqlDataReader rd = cmd.ExecuteReader();
if (rd.HasRows) {
rd.Read(); // read first row
var userId = rd.GetInt32(0);
}
更多信息
- MSDN - SqlDataReader Class
More Information
这篇关于从命令在C#中获取int值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!