mysterio Posted Június 26, 2012 Share Posted Június 26, 2012 Sziasztok! Visual studio 2010 ultimate-en dolgozok és akárhányszor kapcsolódni szeretnék az atw adatbázisához ezt a hibaüzenetet kapom vissza (127.0.0.1): Access denied for user 'felhaszn'@'localhost' (using password: YES) avagy (88.151.96.4): Unable to connect to any of the specified MySQL hosts. a kód amit használok : string MyConString = "SERVER=88.151.96.4;Port=3306;DATABASE=felhasznnev;UID=felhasznnev;PASSWORD= jelszo;"; MySqlConnection connection = new MySqlConnection(MyConString); MySqlCommand command = connection.CreateCommand(); command.CommandText = "select * from users"; connection.Open(); MySqlDataReader Reader = command.ExecuteReader(); while (Reader.Read()) { string thisrow = ""; for (int i = 0; i < Reader.FieldCount; i++) thisrow += Reader.GetValue(i).ToString() + ","; listBox1.Items.Add(thisrow); } connection.Close(); a server résznél próbálkoztam úgy is hogy a portot közvetlenül a szerverhez írom pl így : 127.0.0.1:3308 ez se volt hajlandó csatlakozni. elõre is köszönöm a segtséget! Idézés Link to comment Share on other sites More sharing options...
hajani Posted Június 26, 2012 Share Posted Június 26, 2012 az atw nem biztos, hogy külső kapcsolatokat is elfogad az adatbázisához Idézés Link to comment Share on other sites More sharing options...
mysterio Posted Június 27, 2012 Author Share Posted Június 27, 2012 köszönöm hajani ezen én is gondolkoztam csak nem voltam benne biztos esetleg tudnál olyan tárhelyet mondani ami külső csatlakozást is elfogad ? Idézés Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.