-
Rafael Mendonça França authored
When using double quotes SQLite3 depending on the version will try to evaluate the string as a valid identifier in the query. In this case it will try to evaluate this table name as the name of a valid column on the sqlite_master table. We want this value to be a string literal, so it needs to be single quoted. See https://www.sqlite.org/quirks.html#double_quoted_string_literals_are_accepted
Rafael Mendonça França authoredWhen using double quotes SQLite3 depending on the version will try to evaluate the string as a valid identifier in the query. In this case it will try to evaluate this table name as the name of a valid column on the sqlite_master table. We want this value to be a string literal, so it needs to be single quoted. See https://www.sqlite.org/quirks.html#double_quoted_string_literals_are_accepted
Loading