我正在尝试创建一个登录页面。
我获得用户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循环”之前超时
答案 0 :(得分:0)
根据MSDN,input type=text
将
ExecuteReader()
发送到CommandText
并构建Connection
。
通常,如果您在此处超时,则问题出在数据库连接上。查看您的代码,我认为是SqlDataReader
中的连接字符串。检查它是否确实是您要查找的连接字符串。还要检查同一连接字符串中的不可见字符。