我在SQL Server中创建了两个表:
create table Voyage(NumV int primary key identity, NbpAgadir int, NbpCasa int, NbpRabat int, Montant float)
create table Archive(NumV int foreign key references Voyage(NumV), NumPlace int, Ville varchar(10))
我在VS中有一个表单:
第二个DGV
只包含一行
我希望当我按下Valider Button
将第二行DGV
中的所有数据保存到Voyage table
时,所以我编写了它的代码并且它有效。
问题是当我按下Valider Button
它还应该将数据保存在第一个DGV
中,但我不知道如何检测新行的PK将被添加到Voyage table
,因为我需要将数据保存到Archive table
以便在NumV FK
中写入Voyage table
PK。{/ p>
答案 0 :(得分:0)