format(_qr,128,"Select Name from nameTable Where Name Like \"%%%s%%\"","Blah");
SQLite syntax: Select COLUMN From TABLE Where SOMETHING Like %Text%
ID + Name + Money 1 | OBlah | 50 ----------------- 2 | Blah1 | 64 ------------------ 3 | lol | -666 ------------------ 4 | Blah2 | 5
new Str[12];
format(Str,12,"\"%%%s%%\"", "Blah");
printf(Str);
new Str[12];
format(Str,12,"\"%s%s%s\"","%","Blah","%");
printf(Str);
"Blah"
"%Blah%"
format(String,sizeof(String)," '%s%s%%'","%","Input");
'%Input%'