I\'m hoping to use the following update\\insert method to speed up my application insert\\updates:
UPDATE [Application_Type_Table] SET ApplicationType=\'Test Va
I would suggest moving the query to a stored procedure. Queries (especially multi-statement ones) don't really belong hard-coded into one's application IMO. Doing so would also have the bonus of alleviating your problem ;)