I am using Visual Studio 2003, C# .NET

I can't get this INSERT statement to work. I can get an UPDATE to work, but not this INSERT. Here is my code...

*************** ***
Code:
//opens database
string conString = "Provider=Microsoft.Jet.OLEDB.4.0;"
			+ "Data Source=C:\\TimeClock\\TimeClock.mdb";

OleDbConnection empConnection = new OleDbConnection(conString);
...