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 7568135
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T14:50:48+00:00 2026-05-30T14:50:48+00:00

I want to connect to a remote database (SQL Server 2008) through code using

  • 0

I want to connect to a remote database (SQL Server 2008) through code using a connection string. But I am not be able to connect to it. But I can connect the database using the SQL Server Management Studio successfully, using SQL Server authentication.

But whenever I am trying using code I am getting the exception like::

[DBNETLIB][ConnectionOpen (Invalid Instance()).]Invalid connection.

My connection string is like this ::

Data Source=192.x.x.x;Initial Catalog=mydbName;User ID=user;Password=passw;provider=SQLOLEDB

Can anybody help me out.

thanks in advance.

  • 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-05-30T14:50:50+00:00Added an answer on May 30, 2026 at 2:50 pm

    You don’t show the C# code you’re using to connect – but I think the problem is the provider. If ever possible – use the native SQL client interface from the System.Data.SqlClient assembly to connect to SQL Server.

    Can you try this connection string instead:

    Data Source=192.x.x.x;Initial Catalog=mydbName;User ID=user;Password=passw;
    

    In your config:

    <configuration>
      <connectionStrings>
         <add name="MyConnStr"
              connectionString="Data Source=192.x.x.x;Initial Catalog=mydbName;User ID=user;Password=passw;" />
      </connectionStrings>
    </configuration>
    

    And then use this code snippet:

    string connectionString = ConfigurationManager.ConnectionStrings["MyConnStr"].ConnectionString;
    
    using(SqlConnection conn = new SqlConnection(connectionString))
    {
       ....
    }
    

    See the Connection Strings web site for tons of examples of valid connection strings and what all those options mean.

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

Sidebar

Related Questions

every one. I want to connect a remote database using Sql Connection String in
I can connect to remote SQL Server database and I want to create a
I am using Putty to connect to a remote server. What I want to
I want to connect from home using SQL Server 2005 to another PC. I
I just want to be able to connect to a remote MySQL database on
I am using SQL Server 2008 r2. Did the following steps. But it does
I want to connect and execute one (or sometimes several) SQL statements, and NOT
I am using WinForms & C# to access a SQL Server 2008 on my
Using Visual Studio 2010 SP1, SQL server 2008: Motherboard recently failed and I migrated
By default if you connect to a remote SQL Server via an account that

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.