Tales Posted August 14, 2014 Posted August 14, 2014 (edited) I trying to do this:query_sql("SELECT 'MYCOLUMN' FROM 'char' WHERE 'name' LIKE '"+ strcharinfo(0) +"'",); How can i do this correctly? Thx.@edit, i forget to explain!Im making a npc that get a specific value from Database and show it to the char...The value are created on MyColumn at char table. I want that this script, search for the column where the strcharinfo(0) name are allocated. Edited August 15, 2014 by Tales Quote
Emistry Posted August 15, 2014 Posted August 15, 2014 query( "SELECT `my_column` FROM `char` WHERE `name` = '"+escape_sql( strcharinfo(0) )+"'",.@my_column_data$ ); 1 Quote
Question
Tales
I trying to do this:
query_sql("SELECT 'MYCOLUMN' FROM 'char' WHERE 'name' LIKE '"+ strcharinfo(0) +"'",);
How can i do this correctly? Thx.
Edited by Tales@edit, i forget to explain!
Im making a npc that get a specific value from Database and show it to the char...
The value are created on MyColumn at char table. I want that this script, search for the column where the strcharinfo(0) name are allocated.
2 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.