
Secure way to "disable" SQL injections within LC stack
Moderators: Klaus, FourthWorld, heatherlaine, robinmiller, kevinmiller
-
- VIP Livecode Opensource Backer
- Posts: 4812
- Joined: Sat Apr 08, 2006 8:31 pm
- Location: Minneapolis MN
- Contact:
Re: Secure way to "disable" SQL injections within LC stack
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.
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
HyperActive Software | http://www.hyperactivesw.com
Re: Secure way to "disable" SQL injections within LC stack
My bad, I really should have mentioned that

