ive used crystal reports in my asp.net c# web project
the code for report has been writte in c# [please see code section]
this works fine when the report is first loaded
however, upon drill-down it is not using the username, password given via c# code and thus report gives error
i know what the problem is, but don't know how to solve it
how do i make the report use the username/password/server/database provided to it using c# upon drill-downs as well?
error message:
Logon failed. Details: ADO Error Code: 0x Source: Microsoft OLE DB Provider for SQL Server Description: Login failed for user 'username'. SQL State: 42000 Native Error: Error in creating new data source. Error in File C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\BrokerageSegregated {E82F4CE2-A130-45CD-8C9B-197A31AC0F23}.rpt: Unable to connect: incorrect log on parameters
ReportDocument rpt = new ReportDocument();rpt.Load(Server.MapPath("BrokerageSegregated.rpt"));CrystalReportViewer1.ReportSource = rpt;rpt.SetDatabaseLogon(booya.username, booya.password, booya.server, booya.database);
is there a simpler solution
the report DOES work fine when it first loads... meaning it is reading the username, password values passed to it
i want to make it so so that it does that even on drill-down!
Not yet looked into my old reports apps, but there's some faint memory of similar problems.
As far as I remember, the subreport that's used wile drilling down uses its own database connection, thus needing to pass it its ofw set of credentials - they're not inherited. You'll have to get the subreport's report object and pass it the credentials in the same way you do for the master report.
I faintly remember that there's some kind of collections of subreports, so you might write some generic algorithm to distribute the credentials down the tree of sub(^n)report tree.
Sorry for not supplying ready code =;-)
RakeshBhandari
ASKER
dear frankhelk,
your comment does help understand the problem a bit
however, im still lost as to how to go on about solving it
it would be really appreciated and a great help to me if you could give me some coding pointers to help solve my problem
RakeshBhandari
ASKER
@ dhansmani
i do not understand how do i apply the code snippet you've given
can you elaborate a little, please?
Ok ... I've digged into that old code, not written by myself ...
Unfortunately that code is somewhat :) complicated (much ado with virtual thingies and templates and such things who make every explanation a bloody mess).
I've digged a bit into the object browser, and found something more shot - it might point you into the right direction:
public virtual CrystalDecisions.CrystalReports.Engine.Subreports Subreports { get; }
Member of CrystalDecisions.CrystalReports.Engine.ReportDocument
Summary:
Subreports. Gets the Subreports object.
That member Subreports in the class ReportDocument is a collection of SubReport objects (see doc's) that can be treated as ReportDocument objects. You can loop through them with a foreach construct and assign each of them the database connection credentials.
The credentials are not inherited from the main ReportDocument, probably because you might possibly want to drill down into an entire different database, only filtered by criteria handed down from the main document - so every Subreport needs to get its own connection.
I've not worked with that for some time now, so I'm not fluent enough to explain every aspect of it, but if you fiddle a bit with that, it should not be that difficult.
RakeshBhandari
ASKER
i appreciate every effort you've taken, frankhelk, but thankfully, the problem is solved now. i just specified the logon info to the crystalviewer. many thanks
Open in new window