string
updateCmd.CommandText = select;
updateCmd.Connection = updateConn;
updateCmd.Parameters.Add("name",OleDbType.Char,255,"Name").Value = "";updateCmd.Parameters.Add("address1",OleDbType.Char,255,"Address1").Value = "";updateCmd.Parameters.Add("address2",OleDbType.Char,255,"Address2").Value = "";updateCmd.Parameters.Add("address3",OleDbType.Char,255,"Address3").Value = "";updateCmd.Parameters.Add("postCode",OleDbType.Char,255,"PostCode").Value =txtPostCode.Text;
updateConn.Open();
{cmd.ExecuteNonQuery();//is there some i should have here to get the new single record displayed onto the dataGrid????}
{
MessageBox.Show(e1.ToString());
}updateConn.Close();updateCmd.Parameters.Clear();}It would solve so many headaches if i knew the missing code. I get no errors by the way, so i know the query is passing, i've even had the query pass returned to check it. Any help is appreciated very much, thanks guys