J
JK
In my win form, I'm trying to display a Crystal report with the data in my
dataset only but, if I follow the steps in this msdn page:
http://msdn.microsoft.com/library/d...ml/crtsksettingupanado.netreportinaviewer.asp
it always displays all the data regardless of the Select statement I run.
Here's my code:
InitializeComponent();
//my code
CrystalReport1 oRpt = new CrystalReport1(); //CrystalReport1.rpt - it
contais 3 fields from table ClientData: clientid, fname, lname
SqlConnection SQLConn = new SqlConnection("Data Source=localhost; Integrated
Security=SSPI;" +
"Initial Catalog=invoicing");
string strThisQuery = "select clientid, fname, lname from ClientData where
clientID = 4"; /it returns only one record
SqlDataAdapter MyDataAdapterClients = new SqlDataAdapter (strThisQuery,
SQLConn);
DataSet DS_MyReportsDS = new DataSet();
MyDataAdapterClients.Fill(DS_MyReportsDS, "ClientData");
oRpt.SetDataSource (DS_MyReportsDS);
crystalReportViewer1.ReportSource = oRpt;
It doesn't matter what my Select returns, it'll always display all the data
in ClientData. I posted a similar message a few days ago, and someone posted
this:
"If it contains the schema of all the columns, the CrystalReportViewer will
display all the data in the table regardless of your select." but I really
didn't understand what he meant. How would I be able to pass my Select
statement into the report?
Thanks.
dataset only but, if I follow the steps in this msdn page:
http://msdn.microsoft.com/library/d...ml/crtsksettingupanado.netreportinaviewer.asp
it always displays all the data regardless of the Select statement I run.
Here's my code:
InitializeComponent();
//my code
CrystalReport1 oRpt = new CrystalReport1(); //CrystalReport1.rpt - it
contais 3 fields from table ClientData: clientid, fname, lname
SqlConnection SQLConn = new SqlConnection("Data Source=localhost; Integrated
Security=SSPI;" +
"Initial Catalog=invoicing");
string strThisQuery = "select clientid, fname, lname from ClientData where
clientID = 4"; /it returns only one record
SqlDataAdapter MyDataAdapterClients = new SqlDataAdapter (strThisQuery,
SQLConn);
DataSet DS_MyReportsDS = new DataSet();
MyDataAdapterClients.Fill(DS_MyReportsDS, "ClientData");
oRpt.SetDataSource (DS_MyReportsDS);
crystalReportViewer1.ReportSource = oRpt;
It doesn't matter what my Select returns, it'll always display all the data
in ClientData. I posted a similar message a few days ago, and someone posted
this:
"If it contains the schema of all the columns, the CrystalReportViewer will
display all the data in the table regardless of your select." but I really
didn't understand what he meant. How would I be able to pass my Select
statement into the report?
Thanks.