I am developing an application in VS 2005 where I need to my application talking to MS Access
database and Interbase database at the same time.
**
config.app 1**
<?xml version="1.0"?>
<configuration>
<appSettings>
<add key="Main.ConnectionString" value="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=U:\db.mdb;User Id=;Password=;Jet OLEDB:System Database=;Jet OLEDB:Database password=stick"/>
</appSettings>
</configuration>
config.app 2
<?xml version="1.0"?>
<configuration>
<appSettings>
<add key="Main.ConnectionString" value="Database=\SUPERPLUS;DataSource=limms;User=sysdba;Password=xyzzy;Port=3050;Role=;CharSet=UNICODE_FSS"/>
</appSettings>
</configuration>
what changes do i have to make to my App.config file to allow both the database to be accessed simultaneously.
Thanks!