This is my form(C#) and I want to store this data in sql server 2008 table name called Table1, this is the first row/record I am inserting in table1 table.
View of table after inserting the first row/record in table1
ID
|
NAME
|
DATA1
|
DATA2
|
DATA3
|
DATA4
|
DATA5
|
1
|
A
|
10
|
20
|
30
|
Null
|
Null
|
Table1
After that I want to store the second row/record in the table1
View of table after inserting the second row/record in table1
ID
|
NAME
|
DATA1
|
DATA2
|
DATA3
|
DATA4
|
DATA5
|
1
|
A
|
10
|
20
|
30
|
Null
|
Null
|
2
|
B
|
40
|
50
|
60
|
70
|
80
|
Table1