私は長い間プログラミングしていないので、呼び出されたクラスにあるこの SqlCommand の結果を呼び出す方法があるかどうかを尋ねたいと思いますklientClass
私はそれが次のように見えるかもしれないと考えていました:
private static void ReadFirma()
{
string queryString =
"SELECT rocnik from FIRMA;";
using (SqlConnection connection = new SqlConnection(myConnection.DataSource.ConnectionString
))
{
SqlCommand command = new SqlCommand(
queryString, connection);
connection.Open();
int result= Convert.ToInt32(command.ExecuteScalar());
try
{
}
finally
{
reader.Close();
}
}
}
この結果をレポート パラメータに挿入する必要があるためです。
this.klientTableAdapter.Fill(this.prehled_zajezdu.HereReturnResult);
this.reportViewer1.RefreshReport();
質の低い静かな質問で申し訳ありません。反対票を受け取らないことを願っています。