Don't wanna be here? Send us removal request.
Text
C# 데이터베이스 간단 연결
class database {
// 쿼리 접속
MySqlConnection connection = new MySqlConnection("Server=localhost;Database=insa;Uid=root;Pwd=root;");
// 쿼리 연결
public void connectionDB()
{
connection.Open();
}
}
1 note
·
View note