Secure way to "disable" SQL injections within LC stack

Bringing the internet highway into your project? Building FTP, HTTP, email, chat or other client solutions?

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller

bogs
Posts: 5435
Joined: Sat Feb 25, 2017 10:45 pm

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

Post by bogs » Tue Feb 13, 2018 5:05 pm

Glad I could help :)
Image

jacque
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 7210
Joined: Sat Apr 08, 2006 8:31 pm
Location: Minneapolis MN
Contact:

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

Post by jacque » 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. 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.
Jacqueline Landman Gay | jacque at hyperactivesw dot com
HyperActive Software | http://www.hyperactivesw.com

bogs
Posts: 5435
Joined: Sat Feb 25, 2017 10:45 pm

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

Post by bogs » Tue Feb 13, 2018 9:51 pm

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:
Image

Post Reply

Return to “Internet”