일상+

C# MySql 연결 본문

컴퓨터공학

C# MySql 연결

이종준 2009. 5. 26. 16:21
using MySql.Data.MySqlClient;

private MySqlConnection con = new MySqlConnection(String.Format("server={0}; user id={1}; password={2}; database={3}; pooling=false;", ip, id, password, database));


참조추가 해주면된다.

Comments