SQLite, MySQL but not PostgreSQL support using double quotes for string literals in some places. This is generally considered a bad practice and SQLite recommends disabling the feature, which FreeBSD does, resulting in an error on startup:
no such column: table
Let’s fix the syntax to use ANSI SQL quoting style.
SQLite, MySQL but not PostgreSQL support using double quotes for string literals in some places. This is generally considered a bad practice and SQLite recommends disabling the feature, which FreeBSD does, resulting in an error on startup:
Let’s fix the syntax to use ANSI SQL quoting style.
Fixes: #1488