mysql データベースを使用して c# でデータセットを使用してレポートを表示すると問題が発生します。プログラム コードを使用してレポートを作成します。インターネットで多くの記事を試しましたが、レポートがまだ表示されません。C# と MySQL を使用してレポート ビューアーでレポートを作成することはできますか?
ここに私のコードがあります
private void reporttest_Load(object sender, EventArgs e)
{
string comm = "select * from t_pejabat";
MySqlConnection conn = new MySqlConnection(Program.konek);
MySqlCommand comd = new MySqlCommand(comm, conn);
conn.Open();
DataSet1 ds = new DataSet1();
MySqlDataAdapter da = new MySqlDataAdapter(comd);
da.Fill(ds, "isi");
conn.Close();
this.reportViewer1.Reset();
this.reportViewer1.LocalReport.DataSources.Add(new ReportDataSource("isi", ds.Tables[0]));
this.reportViewer1.RefreshReport();
}
ここにエラー画像 エラーがあります