Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8460481
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T13:37:12+00:00 2026-06-10T13:37:12+00:00

I need to connect to oracle from my .Net application. I’m thinking of using

  • 0

I need to connect to oracle from my .Net application.

I’m thinking of using ODP.NET

Is there a way to connect to Oracle without any dependency on the tnsnames.ora file? Reason I ask is because I’ll have hundreds of different connections and I wouldnt want to be dependant on that file.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T13:37:14+00:00Added an answer on June 10, 2026 at 1:37 pm

    Yes, if you use a connection string that contains the data of tnsname.ora.


    Say your tnsname entry looks like this:

     YourTnsName =  
      (DESCRIPTION =  
        (ADDRESS_LIST =  
          (ADDRESS = (PROTOCOL = TCP)(HOST = YourHost)(PORT = 1521))  
        )  
        (CONNECT_DATA =  
          (SID  = YourSid)  
        )  
      )  
    

    instead of using YourTnsName in the connection string, you can write it like this:

    var constr = new OracleConnectionStringBuilder()
                 {
                    DataSource = @"(DESCRIPTION =(ADDRESS_LIST =(ADDRESS = (PROTOCOL = TCP)(HOST = YourHost)(PORT = 1521)))(CONNECT_DATA =(SID  = YourSid)))",
                    UserID = "userid",
                    Password = "password",
                 }.ConnectionString;
    
    using (var con = new OracleConnection(constr))
    { 
        ... 
    }
    

    hence no entry in tnsname.ora is needed.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using the current version of ODP.NET and trying to connect to an Oracle
I am using SQLAPI++ to connect to Oracle from my Visual C++ application. I
I have a application with JPA Hibernate without Spring and I need connect to
I need to connect to a MongoDB instance from my EJB3 application, running on
I've got a vb.net codebase using ado to connect to an Oracle database. We
How do I connect to a remote Oracle database instance from PHP? I need
I have to connect an Orcle DB (virtual machine) from my .NET application. After
I have an ASP.NET 4.0 application that is using Entity Framework 4.3 to connect
There is a semester where each student need to develop a system using VB.NET.
I need to connect to Oracle9,10 and 11 in my java application.The client will

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.