Page 1 of 1

Connection String

Posted: Wed Mar 28, 2012 12:37 am
by galawij
Hello,
How can I send a Connection string from a appliction to a report as a parameter??
I want to personalize connection string.
Thank you for your help.

Connection String

Posted: Wed Mar 28, 2012 6:06 am
by HighAley
Hello.
galawij wrote:How can I send a Connection string from a appliction to a report as a parameter??
I want to personalize connection string.
Thank you for your help.
You could do it with next code:

Code: Select all

Report.Dictionary.Databases[0].ConnectionString = yourConnectionString;
Thank you.