0
in the Insert below I get the following error.
INSERT INTO dump1090 ('hex','squawk','flight','lat','lon','validposition','altitude','vert_rate','track','validtrack','speed','messages','seen') VALUES ('e4827e','3670','TAM3754 ','-22.850818','-43.070628','1','10350','3328','8','1','219','162','161')
1064 - You have a syntax error in your SQL next to 'Hex','squawk','Flight','lat','Lon','validposition','altitude','vert_rate','Trac' on line 1*
Remove the quotes from the column names. Like this: INSERT INTO dump1090 (Hex,squawk.... but keep in the values.
– Reginaldo Rigo