I have used string in a function as follow.
I'm passing a string to a particular function, if that string has single quotes inside middle it's breaking. How to include single quotes in Inno Setup Pascal scripting?
TempReadValue(StrArray, 'log4j.appender.testing.File=INSERT INTO emp select Eid,'%K','%L'from DistributionTable whereEname = 'Nails:chino'', LogFileName);
When passing to function its taking till %K
, after that its breaking. Can anybody guide me how to read/pass entire string till Nils:chino
?
Thanks for your help.