C# MySQL delete 문을 이용하여 삭제하기 코드
private void button_delete_Click(object sender, EventArgs e) { // MySQL 데이타베이스를 연결하기 위해서는 MySqlConnection 클래스를 사용한다. // 이 클래스를 생성할 때, Connection String을 넣어 주어야 하는데, 여기에는 datasource명, port번호, 사용자명, 암호을 지정해 준다. string myConnection = "datasource = localhost; port=3306; username=root; password=root"; string Query = "delete from test.student where no = '" + this.tb_no.Text + "' ;"; MySqlConnection my..
프로그래밍/C#
2021. 1. 19. 16:37