Dear Support,
there is an escapping issue on database read.
CONCATE/CONCATE_WS added strings to getther. I will generate a string of name und adress of a customer.
If I use the data read querry fields function there is a escaping that fires worng.

Is there a posibility to fix this?
Best regards
Collie-IT
there is an escapping issue on database read.
CONCATE/CONCATE_WS added strings to getther. I will generate a string of name und adress of a customer.
CONCAT_WS("-", client.firstname , client.lastname);https://www.w3schools.com/sql/func_mysql_concat_ws.asp
If I use the data read querry fields function there is a escaping that fires worng.

SELECT CONCAT_WS(`client`.`"-",` client.Firstname, client.Lastname) AS `client.clientname`,
Is there a posibility to fix this?
Best regards
Collie-IT