ストアドプロシージャを介してSQLからデータをフェッチしています。
私のSQLクエリウィンドウでは、実行に43秒かかります。
しかし、c#を介して同じストアドプロシージャを実行している間、5分で応答を得ることができません。
SqlDataAdapterを使用しています
using (SqlDataAdapter da = new SqlDataAdapter(cmd))
{
DataSet ds = new DataSet();
// Fill the DataSet using default values for DataTable names, etc
da.Fill(ds);
// Detach the SqlParameters from the command object, so they can be used again
cmd.Parameters.Clear();
if (mustCloseConnection)
connection.Close();
// Return the dataset
return ds;
}
私を助けてください。