hello i'm using visual studio 2008, vb.net and oracle as my db. this is what i save in my apps.config
<appSettings/>
<add key="SMSDW_connection" value="server=abc;database=efg;User ID=**;Password=**;"/>
and this is my code for calling the apps.config file :
Dim connectionString = System.Configuration.ConfigurationManager.AppSettings("SMSDW_connection")
Dim sqlConnection As OracleClient.OracleConnection = New OracleClient.OracleConnection(connectionString)
but still i got an error which is :
The ConnectionString property has not been initialized.
i have add reference System.Configuration and Imports System.Configuration