• Not a sweat, hopefully we can get you to your end destination....

    Okey, you posted a blank...

    Ideally, you want to have a configuration for your connection string, and your connection string only.

    For example, I have a SQL connection string in my configuration which looks something like this:

    Data Source=YourServerName;Initial Catalog=YourDBName;User ID=YourUserID;password=YourPassword;Provider=SQLNCLI.1;Persist Security Info=True;Auto Translate=False

    Not sure what the Oracle connection string will look like, but it should be similar...

    Now, when you save this configuration, the userid and password (sensitive) WILL NOT be saved. You will have to add these by hand.

    Trust this helps

    ~PD