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