I am very new to c# and all I want to do to start off with in insert a row into an access database.
I am using Microsoft Visual C# express 2010, I have added a dataset an am unsure of where to go from here...
I have had a look on google etc.. and nothing worked for me :(
I have been trying with this code:
DataRow newCustomersRow = timeDataSet.Tables["theTimes"].NewRow();
newCustomersRow["ID"] = "1";
newCustomersRow["User"] = "Test Name";
newCustomersRow["LieuHours"] = "23";
timeDataSet.Tables["theTimes"].Rows.Add(newCustomersRow);
There are only 3 colums in the table, it is for a bigger project that I am working on.
Please can some one help me?