I always get this error whenever I try to update the record in OleDBSQL. Here is my code:
private void update(int id, string fname, string user, string pass, string email, string address, string ci, string bday)
{
//SQL STMT
string cmdTxt = "UPDATE tbl_users SET fullName= '" + fname + "', userName='" + user + "', password='" + pass + "', email='" + email + "', address='" + address + "', contactInformation='" + ci + "', birthday='" + bday + "' WHERE ID=" + id + "";
cmd = new OleDbCommand(cmdTxt, con);