Is there opposite of escape_sql? Like for example retrieve_sql so that i can minimize the use of variables like permanent ones. I cant figure out myself. (pity me noob)
Escape sql
Syntax:
escape_sql(<value>)
Description:
Converts the value to a string and escapes special characters so that it is safe to use in query_sql().
Returns the escaped form of the given value.
Examples:
set .@str$, "John's Laptop";
set .@esc_str$, escape_sql(.@str$); // Escaped string: John\'s Laptop
Or should i be sticking in variables because sometimes sql ingame is often slow.
Question
Lil Troll
Is there opposite of escape_sql? Like for example retrieve_sql so that i can minimize the use of variables like permanent ones. I cant figure out myself. (pity me noob)
Or should i be sticking in variables because sometimes sql ingame is often slow.
Edited by Lil Troll2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.