I have a total loss of how to actually add rows to an MS access table.
The addnew creates a row on the table but once EndEdit is called it
disappears. What am I missing.
DataRowView newRow = (DataRowView)DB .tblBallBinding Source.AddNew() ;
newRow.BeginEdi t();
detDataSet.tblB allRow ball = (detDataSet.tbl BallRow)newRow. Row;
ball.Timestamp = DateTime.Now;
....
// row exists here.
newRow.EndEdit( );
// it is now gone.
Comment