Hi Joe,
Thanks for the bug report. This is now foxed in the source code repository for the next release.
The problem was that the person who implemented the poll feature chose to use "Order" as the name of the column and that is a keyword in every database platform, so I had to look up the escape characters for each of the other data leyers in order to ORDER By Order.
In MySql its ORDER BY `Order`, other databases use ORDER BY "Order" or ORDER BY [Order]
Best,
Joe