从命令在C#中获取int值 [英] Get int value from command in c#

查看:171
本文介绍了从命令在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


SqlDataReader 提供从SQL Server数据库读取仅向前流的数据流的方法。 p>

SqlDataReader Provides a way of reading a forward-only stream of rows from a SQL Server database.



示例



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类

  • More Information

    • MSDN - SqlDataReader Class
    • 这篇关于从命令在C#中获取int值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆