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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T17:24:30+00:00 2026-06-16T17:24:30+00:00

I am trying to connect to my remote MySQL server, using the following code.

  • 0

I am trying to connect to my remote MySQL server, using the following code. Can you tell me what I am doing wrong as the replacement of database connection info with variables doesn’t seem to be working.

   using MySql.Data.MySqlClient;       

   string db_Server = "10.0.0.0";
   string db_Name   = "myDatabase";
   string db_User   = "myUser";
   string db_Pass   = "myPassword";


   // Connection String
   MySqlConnection myConnection = new MySqlConnection("server = {0}; database = {1}; uid = {2}; pwd = {3}", db_server, db_Name, db_User, db_Pass);

As a PHP developer, I prefer to use the code above instead of the deliberate casting below:

   MySqlConnection myConnection = new MySqlConnection("server=10.0.0.0; database=myDatabase; uid=myUser; pwd=myPassword");

But as you can see in this image, I am getting a lot of red squiggles: http://screencast.com/t/xlwoG9by

  • 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-16T17:24:32+00:00Added an answer on June 16, 2026 at 5:24 pm

    Order of your parameter is wrong, it should be:

    db_server, db_Name, db_User, db_Pass
    

    Currently it is:

    "server = {0}; database = {1}; uid = {2};   pwd = {3}"
           db_Server         db_User   db_Pass   db_Name
    

    So your statement should be:

    MySqlConnection myConnection = new MySqlConnection(string.Format(
    "server = {0}; database = {1}; uid = {2}; pwd = {3}", 
    db_Server,db_Name, db_User, db_Pass));
    

    EDIT: based on the comments and discussion, the error you are getting is that you are trying all the stuff at class level. You should have these lines inside a method and call that method where you need it. Something like:

    class MyClass
    {
        string db_Server = "10.0.0.0";
        string db_User = "myUser";
        string db_Pass = "myPassword";
        string db_Name = "myDatabase";
    
    
        public MySqlConnection GetConnection()
        {
            MySqlConnection myConnection = new MySqlConnection(string.Format(
                       "server = {0}; database = {1}; uid = {2}; pwd = {3}",
                        db_Server, db_Name, db_User, db_Pass));
            return myConnection;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to connect to a MySQL database on a remote server using MySQLdb
I'm trying to connect to remote MySQL server with SSL from PHP using mysql_connect:
I am trying to connect to my mysql database on a remote server (via
I am trying to connect to a remote mysql database using django. The documentation
I'm trying to connect to remote MySQL database using PDO, but it fails with
Hey guys im trying to connect to my remote mysql database and my code
I am trying to connect to a remote MySQL database using Visual C# 2008
I am trying to connect to a remote mysql database from an iPhone. I
I am trying to connect to a remote oracle database server in Java with
I am trying to connect to a remote server and do some mysql queries

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.