ExecuteReader 超时

ExecuteReader Timing Out

我正在尝试创建一个登录页面。

我得到用户ID和密码作为参数,我想访问我的数据库并比较它们,但是当我使用ExecuteReader执行查询时,查询总是超时。

数据库本身很小很小,只有大约5或6个用户,所以应该不会超时......

SqlConnection cnn = null;
string connectionString = null;

connectionString = @"Data Source=DESKTOP-A5GR284\SQLEXPRESS;Initial Catalog=Chat_DB;Integrated Security=True";

cnn = new SqlConnection(connectionString);
cnn.Open();

SqlCommand cmd = new SqlCommand("SELECT * FROM Users", cnn);

SqlDataReader reader = cmd.ExecuteReader();

while (reader.HasRows)
{
    while (reader.Read())
    {
         Console.WriteLine("{0}", reader.GetString(1));
    }

    reader.NextResult();
}

cnn.Close();

进入'while loop'前reader会超时

根据MSDNExecuteReader()

Sends the CommandText to the Connection and builds a SqlDataReader.

一般来说,如果你在这里超时,问题出在数据库连接上。查看您的代码,我认为 connetionString 中的连接字符串是问题所在。检查它是否真的是您要查找的连接字符串。还要检查同一连接字符串中的不可见字符。