I asked this question long time ago but cannot find it again...
having a long sql command that i want to write in multiple lines
like:
msg.topic = "SELECT id, firstname, lastname FROM MyGuests"
as:
msg.topic="
SELECT id, firstname, lastname
FROM
MyGuests"
just to make it more readable
Is that possible and if so, how???