Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Unknown Query Engine Error

Status
Not open for further replies.

vava

Programmer
Jul 18, 2002
1
IN
Hai,
I am trying to generate a crystal report with datasource as a DataSet.

public CrystalReport1 oRpt ;
oRpt = new CrystalReport1();
//A DataSet dset1 is instantiated and populated.
oRpt.SetDataSource (dset1);
CrystalReportViewer1.ReportSource = oRpt;
CrystalReportViewer1.DataBind();

On execution of the webpage ,I got the following error
CrystalDecisions.CrystalReports.Engine.DataSourceException: Unknown Query Engine Error

Can anybody solve this error?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top