Mysql Help - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Mysql Help (
/showthread.php?tid=655847)
Mysql Help -
TadePoleMG - 01.07.2018
Hi
Can anyone explain this: %e
I saw this in mysql scripts.
Re: Mysql Help -
Mobtiesgangsa - 01.07.2018
This is a escape specifier to escape a string '%e'
example
Код:
SELECT * FROM `Users` WHERE `Name` = '%e'
it escapes the string automaticly
Re: Mysql Help -
TadePoleMG - 01.07.2018
Thank You for explaining this.