Important: #80506 - Dbal compatible field quoting in TypoScript¶
See forge#80506
Description¶
Properties in Typo
dealing with SQL fragments need proper quoting of field names to be
compatible with different database drivers. The database framework of the core now applies proper quoting
to field names if they are wrapped as {#field
It is advised to adapt extensions accordingly to run successfully on databases like PostgreSQL.
Example for a select.
TypoScript snippet:
select.where = {#colPos}=0
Copied!