I have an asp page that inserts several pieces of input into an SQL database. Page was working fine, and Im not sure what could have changed to cause the following error when data is entered into one of the fields:Microsoft OLE DB Provider for ODBC Drivers error '80040e14' [Microsoft][ODBC SQL Server Driver][SQL Server]Line 1: Incorrect syntax near 'room'. /Global.asp, line 20
where global.asp line 20 is oConn.execute cSql
In this case the text I input was: this room is bigI also tried input of fdsa, and recieved the following error:Microsoft OLE DB Provider for ODBC Drivers error '80040e14' [Microsoft][ODBC SQL Server Driver][SQL Server]Invalid column name 'fdsa'. /Global.asp, line 20
More Details:The field I am inserting this value into is a (nvarcar(1000),null).None of the other fields on the page have a problem, and this is the last value insert into the database.Any suggestions or ideas on where I should look to begin solving this issue.Thanks!