Page 2 of 2

Re: Secure way to "disable" SQL injections within LC stack

Posted: Tue Feb 13, 2018 5:05 pm
by bogs
Glad I could help :)

Re: Secure way to "disable" SQL injections within LC stack

Posted: Tue Feb 13, 2018 6:34 pm
by jacque
Never quote a constant. "Quote" means the literal 5-character string, anything inside quotation marks is a literal. The word quote alone is a constant that LC understands. These are different :

put "quote"

put quote

Try those in the message box and see what you get.

Re: Secure way to "disable" SQL injections within LC stack

Posted: Tue Feb 13, 2018 9:51 pm
by bogs
jacque wrote:
Tue Feb 13, 2018 6:34 pm
Never quote a constant. "Quote" means the literal 5-character string, anything inside quotation marks is a literal.
My bad, I really should have mentioned that :oops: