4
Answers

how to insert many rows in datagridview

firas shaar

firas shaar

10y
592
1
I have two tables
first is called employees table and the other one is worktimes table
employee_id column is primary key in employees table and foreign key in worktimes table
when button_click event
everyday I want to insert all employees names cloumn in employees table
to worktimes table programtically in datagridview
I have 80 employee name
Answers (4)
0
Vikrant More

Vikrant More

NA 1.5k 166.3k 12y
Insted of creating another stored procedure why dont you create the DML Trigger on Update it will insert the records into new table. this will not harm on you performance i think.