//Инициализация всех полей private void Login_Load(object sender, EventArgs e) { //Инициализация ConnectionString connStr = new MySQLConnectionString("localhost", "root", "root", "testDb"); mySQLDB = new MySQLDBConnection(connStr); select = new SELECT(mySQLDB); }
private void refreshDataGrid(string query) { SELECT select = new SELECT(mySQLDB); select.Select(query); MyTasksDG.DataSource = select.Table; }
/*при загрузке формы инициализируем connStr, принимая данные нашей базы данных, * mySQLDB, принимая строку описания соединения connSrt и select, принимая содержащий * в себе открытое соединение с базой данных по connStr объект mySQLDB * */ private void Login_Load(object sender, EventArgs e) { connStr = new MySQLConnectionString("localhost", "root", "root", "testdb"); mySQLDB = new MySQLDBConnection(connStr); select = new SELECT(mySQLDB); /*User test = new User("upload", "upload", "2020-02-01"); * INSERT insert = new INSERT(mySQLDB); * insert.Insert(test);*/ }
private void MyTasksDG_CellClick(object sender, DataGridViewCellEventArgs e) { int index = e.RowIndex; if (index >= 0) { id = MyTasksDG[0, index].Value.ToString(); SELECT select = new SELECT(mySQLDB); select.Select("SELECT note, status,url FROM todolist WHERE id =" + id); NoteRTB.Text = select.Table.Rows[0].ItemArray[0].ToString(); StatusCB.Text = select.Table.Rows[0].ItemArray[1].ToString(); url = select.Table.Rows[0].ItemArray[2].ToString(); } }