Using Visual Express 2010 I've added a DataGridView and have bound it to a database table. I need to add a row to this table but how?
I've got the following
fuelStopsTableAdapter
fuelStopsDataSet1 (this consists of the columns date, cost, car-string)
I believe I have to create a DataRow from my DataSet then add that to the DataSet? Then update the table using the DataSet?
Would appreciate some guidance.