I\'ve been getting this error for two days now, and I can\'t find the problem with my code.
here\'s the database code.
SQLHandler.java
When trying to input strings for dummy data, you should call INSERT VALUES ("'text'")
instead of INSERT VALUES ( "text" )
Explanation : Because the sql command will want to see a quote '
around the text and the outer quotes "
is for java to recognise that what you are trying to pass in / concatenate is a string