SELECT语句没有返回任何内容

时间:2016-01-14 16:02:58

标签: c# sql-server select

我的问题是,在执行语句时结果是空的,即使在Microsoft的SQL server studio中执行它时也可以。

//This has two values in it (Ex: 4 and 2)
string[] arr2 = groupListValues.Split('-');

List<string> userID = new List<string>();

// Connect to the database
SqlConnection gconn = new SqlConnection(ConfigurationManager.ConnectionStrings["connectinfohere"].ConnectionString);
gconn.Open();
SqlCommand command1 = new SqlCommand();
command1.Connection = gconn;
String sql = "SELECT ID FROM Users WHERE Group = @groupID";
command1.CommandText = sql;
command1.Parameters.Add(new SqlParameter("@groupID", ""));
SqlDataReader reader = command1.ExecuteReader();              

//issue is in this loop
foreach (string str in arr2)
{
    command1.Parameters["@groupID"].Value = str;
    while (reader.Read())
    {
        userID.Add(reader["ID"].ToString());
    }
}

不确定是什么问题。我在SQL语句中获得的“ID”类型为bigint,是否会导致问题?

我在foreach循环中设置参数的原因是因为,arr2中的每个值对应于可以连接多个用户的组。所以我需要遍历它,让用户连接到每个groupID,然后将他们所有的ID添加到列表中。

1 个答案:

答案 0 :(得分:5)

您的代码有两个问题:

第一个是您在执行阅读器后设置@groupID参数。要修复它,请在设置参数值后执行阅读器:

foreach (string str in arr2)
{
    command1.Parameters["@groupID"].Value = str;

    using(SqlDataReader reader = command1.ExecuteReader())
    {
        while (reader.Read())
        {
            userID.Add(reader["ID"].ToString());
        }
    }
}

第二个问题是Group在SQL中是reserved keyword,所以你需要用方括号包装它,如下所示:

String sql = "SELECT ID FROM Users WHERE [Group] = @groupID";