私はCsharp言語を使用してCrystal Reportを作成しようとしていますが、このWebサイトでC#を使用してCrystal Replortを作成する方法のレッスンを見つけました
http://www.codeproject.com/Articles/14029/How-to-Create-a-Crystal-Report-using-C-and-MySQL
しかし、コードを理解しようとすると、一部の行とそれを自分のケースに合わせて更新する方法がわかりません
フルボタンコード
private void button2_Click(object sender, EventArgs e)
{
Mydb mysqlclass = new Mydb();
mysqlclass.conncting();
// here is error under fahad.conncting.createcommand();
MySqlCommand cmd = mysqlclass.connection.CreateCommand();
cmd.CommandText = "SELECT * FROM admin ";
mysqlclass.connection.Open();
MySqlDataAdapter adap = new MySqlDataAdapter(cmd);
MySqlDataReader dataReader = cmd.ExecuteReader();
// Create a Dataset and using DataAdapter to fill it
adap = new MySqlDataAdapter();
adap.SelectCommand = cmd;
CustomerDS custDB = new CustomerDS();
custDB.Clear();
adap.Fill(custDB, "Customers");
// Create a CrystalReport1 object
CrystalReport1 myReport = new CrystalReport1();
// Set the DataSource of the report
myReport.SetDataSource(custDB);
// Set the Report Source to ReportView
crystalReportViewer1.ReportSource = myReport;
}
それが何を意味するのか、どうすれば自分のケースに合わせて変更できるのか説明してもらえますか、ありがとう
これは私が理解していないことです
CustomerDS custDB = new CustomerDS();
custDB.Clear();
adap.Fill(custDB, "Customers");