My guess is that you have the "Statement Termination Character" set to something in the Tools>Tool Settings (General tab). This mean that you need to terminate the statements with that character. It is usually set to a semicolon (

, so your statement should be like:
Insert into table (col1,col2) values (value1,value2);
HTH
Andy