我正在使用ExcuteReader()
命令执行存储过程。如果我在SQL Server中执行存储过程,则需要2秒钟。但是在代码周围2 mins
。我尝试了DataAdapter.Fill()。还是一样。
代码有什么问题?
spString = "usp_graph"
sqlcmd_q.Connection = sqlCnn
sqlcmd_q.CommandText = spString
sqlcmd_q.CommandType = CommandType.StoredProcedure
sqlcmd_q.Parameters.AddWithValue("@clientid", clientId)
sqlcmd_q.Parameters.AddWithValue("@store", storeID)
sqlcmd_q.Parameters.AddWithValue("@attributes", attributeNumber)
sqlcmd_q.Parameters.AddWithValue("@attri1_idx", attribute1_idx)sqlCnn.Open()
sqlcmd_q.CommandTimeout = 300
sqldr = sqlcmd_q.ExecuteReader() // taking time here
dt.Load(sqldr)
dsGrid.Tables.Add(dt)
最佳答案
Slow in the Application, Fast in SSMS?。您需要了解的有关该主题的所有信息,以及更多。
关于asp.net - ExecuteReader需要时间,而不是在SQL Server中吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6220126/