我是Telerik报道的新手。我一直在努力遵循这个KB article,或多或少。
那里描述的方法绕过了向导。我需要绕过向导,因为数据库是SQL Server 2000,而向导要求2005或更高版本。
我将sqlDataAdapter拖放到工具箱中的报表中。适配器在报告的构造函数中配置。
当我向报表添加文本字段并转到其属性页面并单击“省略”的省略号[...]按钮并单击对话框左下方的“字段”时,将窗格显示在右边说“没有数据来源”。
如何在设计时识别数据源?我错过了什么?感谢
namespace EventsReportingClassLibrary
{
using System;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
using System.Data;
using System.Data.SqlClient;
using Telerik.Reporting;
using Telerik.Reporting.Drawing;
/// <summary>
/// Summary description for Report1.
/// </summary>
public partial class Report1 : Telerik.Reporting.Report
{
private SqlConnection CNN;
private SqlDataAdapter DA
{
get { return sqlDataAdapter1; // dropped from the toolbox onto report}
}
private string ConnectionString
{
get { return "server=server5\\SQL2K;Initial Catalog=foo;User Id=foo2;Password=foo3;Pooling=yes"; }
}
public Report1()
{
InitializeComponent();
CNN = new SqlConnection(ConnectionString);
DA.SelectCommand = new SqlCommand("select * from myView",CNN);
DA.SelectCommand.CommandType = CommandType.Text;
this.DataSource = DA;
}
private void Report1_NeedDataSource(object sender, System.EventArgs e)
{
// fires at run-time if datasource of this report is null
}
}
}