Configuring Oracle wallet connection string

Discussion of open issues, suggestions and bugs regarding ADO.NET provider for universal data access
Post Reply
unidirect2pro
Posts: 11
Joined: Tue 03 Jul 2012 06:52

Configuring Oracle wallet connection string

Post by unidirect2pro » Thu 21 Nov 2013 08:52

I am using dotConnect Universal version: 3.340.497

I wonder how I can create a Connection string that that supports Oracle Wallet?

Pinturiccio
Devart Team
Posts: 2420
Joined: Wed 02 Nov 2011 09:44

Re: Configuring Oracle wallet connection string

Post by Pinturiccio » Fri 22 Nov 2013 13:44

Yes, you can connect to Oracle wallet with dotConnect Universal. If your Oracle wallet is configured correctly, you can establish a connection after specifying only the Data Source parameter, omitting the User Id and Password parameters.

This article describes how to configure Oracle wallet http://www.oracle-base.com/articles/10g ... -10gr2.php. In the end of the article, the following command is used for connecting with Oracle wallet:

Code: Select all

C:\>sqlplus /@db10g_test
Use the following connection string to establish a connecton via dotConnect Universal:

Code: Select all

"Provider=Oracle; Data Source=db10g_test"

Post Reply