由于我没有长时间编程,我想问你是否有办法调用这个 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();
对于安静的低质量问题,我很抱歉,希望不要收到反对票。