Incorrect syntax near ''. Unclosed quotation mark after the character string ' '.
- by Mattec
I'm just wondering if someone could point me in the right direction here, I think i've been looking at it for too long so can't see the mistake.
The following code:
SqlCommand updateStyle = new SqlCommand("UPDATE [Lorenz].[dbo].[Layout] SET [bgColour] = '" + bgColour + "' , [textColour] = '" + txtColour + "WHERE <[LoweredUserName] ='" + currentUser + "' ", connection);
updateStyle.ExecuteNonQuery();
Is giving the error:
Incorrect syntax near 'admin'.
Unclosed quotation mark after the character string ' '.