Jump to content

[Answered] Connecting To Database From Visual Studio C#


Lachee

Recommended Posts

I am currently using helio to host my database as my other provider doesn't allow me to have remote connections. I require remote connections for my SQL database as i am currently working on a project. This project is a program. The program must be able to access the database and pull and submit values from my database.

 

I am currently making the program in Microsoft Visual C# 2010 Express and i am having issues connecting to the database.

 

here is my current code:

    static void Main()
    {
	   using (SqlConnection myConnection = new SqlConnection("user id=lachee_admin;" +
						    "password=SECRETWORDS;server=johnny.heliohost.org;" +
						    "Trusted_Connection=yes;" +
						    "database=lachee_BrutalGame; " +
						    "connection timeout=2"))
	    {
		    try
		    {
			    myConnection.Open();
		    }
		    catch
		    {
			    MessageBox.Show("Could Not Connect To Database", "Connection Error 001", MessageBoxButtons.OK, MessageBoxIcon.Error);
		    }
	   
		    Application.EnableVisualStyles();
		    Application.SetCompatibleTextRenderingDefault(false);
		    Application.Run(new Lobby());
	    }
		  
	   
    }

 

For some reason, it cannot connect to the database. It states (when not surrounded my try and catch):

 

A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)

 

 

I am sure that i have allowed remote connection to my database because I have inputted the wildcard (%).

 

Is there anyway to connect? Does helio even support external program connection?

Link to comment
Share on other sites

Try using MySql.Data.MySqlClient.MySqlConnection instead of System.Data.SqlClient.SqlConnection.

 

It says MySql namespace could not be found. Am i suppose to download a certain library? If so, can you please supply a link?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...