我正在使用Vb.Net 2010来开发具有水晶报表的项目。我连接到sqlserver并使用函数Adapter.Fill( dataset,"tableName")填充我的数据集。我现在关心的是如何在水晶报表中显示我的数据集或数据表中的数据?
发布于 2014-05-14 08:18:12
这里我的代码使用了两个表authors和tables
'Build a SQL statement to query for the authors table
Dim sqlString As String = "SELECT * FROM authors"
'Retrieve the data using the SQL statement
adoOleDbDataAdapter = New OleDbDataAdapter(sqlString, adoOleDbConnection)
'Build a SQL statement to query for the titleauthor table
sqlString = "SELECT * FROM titleauthor"
'Retrieve the data using the SQL statement
adoOleDbDataAdapter2 = New OleDbDataAdapter(sqlString, adoOleDbConnection)
'Create a instance of a Dataset
DataSet1 = New DataSet()
'Fill the dataset with the data with author information
adoOleDbDataAdapter.Fill(DataSet1, "authors")
'Fill the dataset with the data with titleauthor information.
'The table name used in the Fill method must be identical to the name
'of the table in the report.
adoOleDbDataAdapter2.Fill(DataSet1, "titleauthor")
'Pass the dataset to the report YOU NEED THIS
Dim crReportDocument As New CrystalReport1()
crReportDocument.Database.Tables(0).SetDataSource(DataSet1)
'View the report
CrystalReportViewer1.ReportSource = crReportDocument
请记住您需要导入
导入CrystalDecisions.CrystalReports.Engine导入CrystalDecisions.Shared
https://stackoverflow.com/questions/20829545
复制相似问题