string stringQuery = "UPDATE task set Task='" + this.titleTextBox.Text + "',doDate='" + this.doDatePicker.Text + "',Details='" + this.detailsTextBox.Text + "',Done='" + i+ "' WHERE id=" + this.dataStringGridView + "";
string stringQuery = "DELETE FROM Task WHERE id=" + this.taskDataGridView.SelectedRows[0].Cells[0].Value.ToString() +"";
string stringQuery = "UPDATE task set Task='" + this.titleTextBox.Text + "',doDate='" + this.doDatePicker.Text + "',Details='" + this.detailsTextBox.Text + "',Done='" + i+ "' WHERE id=" + this.dataStringGridView + "";
var alarmTime = TimeSpan.ParseExact(alarmTimeText, "hh:mm:ss", null, System.Globalization.TimeSpanStyles.None);