Ok, I\'m going crazy on this one. MySQL is throwing a fit about this bit of SQL:
INSERT INTO `test_table` ( `column1`, `column2` ) VALUES ( ?COURSEID, ?C
Not sure if that will work. I would change to either
VALUES (?, ?)
OR
VALUES (:COURSEID, :COURSENAME)