因此,我知道您可以从SQL服务器向数据网格填充信息。但是,是否存在相反的过程,而是针对不同的表格呢?
例如有一个主列表并使用其他表。
示例: 主表:(显示在 datagrid1 )
| OtherTableName| TestSubj | TestCriteria |
----------------------------------------------
| TableName | ValueSubj | ValueCriteria |
----------------------------------------------
| TableName | ValueSubj | ValueCriteria |
----------------------------------------------
其他表格
| TestSubj | TestCriteria |
-----------------------------
| ValueSubj | ValueCriteria |
-----------------------------
| ValueSubj | ValueCriteria |
-----------------------------
我想将匹配列从主表(DataGridView1)中的一行拉到其他表(SQL数据库)。
基本上,您可以单击DataGridView1中的一行,然后单击按钮"将行添加到其他表"。这会将你的insert命令添加到SQL数据库中,在这种情况下,它会排除" OtherTableName"列,只插入" TestSubj"和" TestCriteria"进入" OtherTable"表..
这一切都可能吗?我已经尝试过搜索一些关于此的文档,但我似乎无法找到任何内容。
答案 0 :(得分:0)
我确定这样做的方法要简单得多。但是,您可以使用所选行的单元格值中的字符串。 用户必须选择整行您可以在Datagridview属性下的Visual Studio中更改这些设置。
private void button1_Click_1(object sender, EventArgs e)
{
string iOne = dgMasterGridView.SelectedRows[0].Cells[1].Value + string.Empty;
string iTwo = dgMasterGridView.SelectedRows[0].Cells[2].Value + string.Empty;
string iThree = dgMasterGridView.SelectedRows[0].Cells[3].Value + string.Empty;
string iFour = dgMasterGridView.SelectedRows[0].Cells[4].Value + string.Empty;
string iFive = dgMasterGridView.SelectedRows[0].Cells[5].Value + string.Empty;
string iSix = dgMasterGridView.SelectedRows[0].Cells[6].Value + string.Empty;
string iSeven = dgMasterGridView.SelectedRows[0].Cells[7].Value + string.Empty;
string iEight = dgMasterGridView.SelectedRows[0].Cells[8].Value + string.Empty;
string iNine = dgMasterGridView.SelectedRows[0].Cells[9].Value + string.Empty;
string iTen = dgMasterGridView.SelectedRows[0].Cells[10].Value + string.Empty;
string iEleven = dgMasterGridView.SelectedRows[0].Cells[11].Value + string.Empty;
string iTwelve = dgMasterGridView.SelectedRows[0].Cells[12].Value + string.Empty;
try
{
// Connection to DB
SqlConnection con = new SqlConnection();
con.ConnectionString = (@"Data Source=(localdb)\MSSQLLocalDB;Initial Catalog=Database;Integrated Security=True");
//Insert Query
string insertquery = "INSERT INTO dbo.[myTable] ([Item1], [Item2], [Item3], [Item4], [Item5], [Item6], [Item7], [Item8], [Item9], [Item10], [Item11], [Item12]) VALUES(@Item1,@Item2,@Item3,@Item4,@Item5,@Item6,@Item7,@Item8,@Item9,@Item10,@Item11,@Item12)";
SqlCommand cmd = new SqlCommand(insertquery, con);
//open connection
con.Open();
//Parameters
cmd.Parameters.AddWithValue("@Item1", iOne);
cmd.Parameters.AddWithValue("@Item2", iTwo);
cmd.Parameters.AddWithValue("@Item3", iThree);
cmd.Parameters.AddWithValue("@Item4", iFour);
cmd.Parameters.AddWithValue("@Item5", iFive);
cmd.Parameters.AddWithValue("@Item6", iSix);
cmd.Parameters.AddWithValue("@Item7", iSeven);
cmd.Parameters.AddWithValue("@Item8", iEight);
cmd.Parameters.AddWithValue("@Item9", iNine);
cmd.Parameters.AddWithValue("@Item10", iTen);
cmd.Parameters.AddWithValue("@Item11", iEleven);
cmd.Parameters.AddWithValue("@Item12", iTwelve);
//execute
cmd.ExecuteNonQuery();
//close connection
con.Close();
MessageBox.Show("Information has been submitted");
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
这也会跳过第1列。但是,如果您想从第1列中提取信息,只需添加:
string iZero = dgMasterGridView.SelectedRows[0].Cells[0].Value + string.Empty;
&安培;&安培;
cmd.Parameters.AddWithValue("@Item0", iZero);
不要忘记将它添加到SQLQuery字符串中。
您还可以将信息存储在Var中,以便以后在范围内部或外部使用。