Page 1 of 1

[Done] PB 5.4 LTS Literal string issue with ";"?

Posted: Tue Dec 01, 2015 11:48 am
by bbanelli
Greetings to all,

Code: Select all

Debug ~"\";)"
Literal string not terminated (" missing).

When I remove ";" or insert any other character instead, it works properly. This line should display

Code: Select all

";)
Further more:

Code: Select all

  Debug ~"INSERT INTO users (id_card, email, name, surname, address, contact, dob) VALUES (" + CardID +
        ~", \"" + strUserToCardEmail +
        ~", \"" + strUserToCardName +
        ~", \"" + strUserToCardSurname +
        ~", \"" + strUserToCardAddress +
        ~", \"" + strUserToCardContact +
        ~", \"" + dgadDOB + ~"\")" + ";"
Returns

Code: Select all

Unfinished double quote.
Windows 7, x86. What am I doing wrong?

With my best,

Bruno

Edit: Seems to work in Beta1 LTS 5.41.

Re: [PB 5.4 LTS] Literal string issue with ";"?

Posted: Tue Dec 01, 2015 12:30 pm
by Demivec

Re: [PB 5.4 LTS] Literal string issue with ";"?

Posted: Tue Dec 01, 2015 12:41 pm
by bbanelli
Thanks Demivec, I've missed it. :(

Obviously the second issue I've posted was settled as well! :)