up vote 0 down vote favorite
share [g+] share [fb]

I created a crystal report using test a DB. I run the report using .NET ReportDocument class. Everything works fine until I connect to the test DB.

When same report is pointed to UAT DB (all required DB objects are available in UAT too), I am getting error. To fix this, I have to change the server name to UAT DB manually in the RPT file.

How to fix this?

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

A solution is to create a system DSN (ODBC) for connecting to your target database. You can then switch the ODBC to whichever database you want (local,test,stage etc). Also, if you ensure an ODBC connection of the same name is available on all your servers, moving the report from dev->test->stage->production should be easy.

link|improve this answer
feedback

Using push reports should solve your issue. You can set up the report to accept a strongly-typed ADO.NET Dataset, and supply that dataset at runtime.

link|improve this answer
No, I am not using any ADO.NET DataSet. The report talks to DB objects firectly. Only thing I have to do is, send the connection details during runtime. – Kaz Jul 17 '09 at 15:25
AFAIK, you can't. The report maintains its own database settings that are set up at design time, and can't be changed at runtime. – Jeremy Frey Jul 17 '09 at 15:53
feedback

Isn't that how it's supposed to work? It has to know to what DB it's connecting?

Maybe I'm missing something but it sounds like you just needed to get the connection right.

link|improve this answer
1  
Crystal reports can operate in two basic modes: push or pull. Most reports I've seen built use pull, which stores the connection data within the report class. It's nice for when the report has to live on its own, but inside the scope of a larger application, it's a PITA, because the report data source has to be manually changed whenever the code moves to a different server (i.e. dev -> test -> production). Push reports let the report accept data from an outside source, which can include an ADO.NET dataset, which centralizes the details of the connection. – Jeremy Frey Jul 17 '09 at 15:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.