While I am trying to insert a row to my table, I\'m getting the following errors:
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that
There are two different types of quotation marks in MySQL. You need to use ` for column names and ' for strings. Since you have used ' for the filename column the query parser got confused. Either remove the quotation marks around all column names, or change 'filename' to `filename`. Then it should work.