我有一个包含列名,日期时间,星期日,星期一,......周六的表格。我有一个c#应用程序,它有一个工作日的datagridview和组合框列,我想动态地向列中插入一个值。 当我尝试从组合框中选择星期日并在文本框中输入10时,它应该在表格中插入一个新行。 这就是我所做的..如何根据组合框选择值插入单列。
string Query = " Insert into [VCS].[dbo].[PA Report]([Name],[Date time],[Sunday]) values ('" + this.textBox1.Text +'" where ?????????"'; "; );";
SqlConnection conDatabase = new SqlConnection(constring);
SqlCommand cmdDataBase = new SqlCommand(Query, conDatabase);
SqlDataReader myReader;
try
{
conDatabase.Open();
myReader = cmdDataBase.ExecuteReader();
MessageBox.Show("saved");
while (myReader.Read())
{
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}