H all
I am building an Add-In that needs to connect to an Oracle database, so I added an “app.config” file and a connectionStrings tag, but it
does not work because it does not find the config file from the .vb program
<connectionStrings>
clear/>
add name=MyConnectionString" providerName="System.Data.OracleClient" connectionString="Data Source=XXXXPersist Security Info=True;User ID=AAA;Password=XXXX; Unicode=True;" />
<connectionStrings>
How can I read a config file from an Add-In?
Thanks