Hi,
when we refresh Catalog,a windows appears to get some information from user.
These are
OS(Windows) Authentication USERID =CONFIDA40
Passwod=****
We use Oracle.
We are lofs of customers, and we want to load customers users as CONFIDA40(enter database OFFICE), CONFIDA40_AK (enter database AKDENIZ),
CONFIDA40_CS(enter database CSSS)
We refreh and generate LLBLGEN project and create Dll's like CONFIDADB.dll and CONFIDAdbdbSpesicif.dll,
We use Visual Studio .net,C#,Reference there dlls and App.config file we write connection string as
<add key="Main.ConnectionString" value="data source=dbhost;user id=confida40;password=xx;persist security info=false;"/>
If I want to use AKDENIZ database, with user CONFIDA40_AK ,I changed my connection string as
<add key="Main.ConnectionString" value="data source=dbhost;user id=confida40_ak;password=xx;persist security info=false;"/>
But After running my program,I saw that my program connect database(HOME) with user
CONFIDA40,because LLBLGEN project keep this information in it.And I could not change user information during running of my program.
How can I solve this problem?
thanks.