Strings need to be surrounded by single-quotes:
Try this:
INSERT INTO H20(ProduktNr,ProdNamn) Values (66,'TEST')
Then you need to make changes to your code to detect strings and add the single quotes.
Any single quotes WITHIN the string need to be escaped with an additional single string (e.g. if you want to insert TEST'S OK
INSERT INTO H20(ProduktNr,ProdNamn) Values (66,'TEST''S OK')