運が悪いので、これを約1時間機能させようとしています。データベースをホスティングからローカル マシンにコピーし、接続文字列を変更しましたが、何らかの理由で次のエラーが発生し続けます。
Could not find stored procedure
正しいデータベースへの接続であり、管理スタジオ経由で接続するとストアド プロシージャを実行できるため、何が問題なのかわかりません。これをデバッグするにはどうすればよいですか?
ありがとう。
コードは次のとおりですが、これはホスティングのサーバーで正常に機能することに注意してください。
private void openDatabaseConnection()
{
myConnection = new SqlConnection(_connectionString);
myCommand = new SqlCommand();
myCommand.Connection = myConnection;
myCommand.Parameters.Clear();
myConnection.Open();
}
using (myConnection)
{
openDatabaseConnection();
using (myCommand)
{
myCommand.CommandText = "storedProcedureName";
myCommand.CommandType = CommandType.StoredProcedure;
using (myReader)
{
myReader = myCommand.ExecuteReader();
myReader.Read();
//Get Data
}
}
}