Hi Guys,
I am trying to make a connection with Oracle 11g which is installed on a server 2008 BUT have problems with the ConnectionString.
Could you please let me know how I set a correct connection String while I have parameters like these:
Database name: GISData
Server Name : SRV_GISSER
Port : 1521
User Name : Example
Password: : PExample
I already tried the to take alook at this page
http://www.connectionstrings.com/oracle
but I could not figure out which one is the best choice and how to use them, so please do not send me there again
I used this standard code which could not make any connection
private string oraConnectionString = "Provider=msdaora;data source = GISData ;user id= Example; password=PExample;";
private OleDbConnection oraConnection;
oraConnectionString = String.Format(oraConnectionString);
oraConnection = new OleDbConnection(oraConnectionString);
oraConnection.Open();
I really appreciate your time and effort in advanced if you can help me to find it out
how to make a simple connection with ORACLEEEEEEE.
I believe that i am missing the Server and port parameter but how I can use them?
Thanks