Tales Posted August 14, 2014 Group: Members Topic Count: 163 Topics Per Day: 0.03 Content Count: 319 Reputation: 8 Joined: 02/05/12 Last Seen: January 11, 2016 Share 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 Link to comment Share on other sites More sharing options...
Emistry Posted August 15, 2014 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2370 Joined: 10/28/11 Last Seen: Sunday at 05:32 PM Share Posted August 15, 2014 query( "SELECT `my_column` FROM `char` WHERE `name` = '"+escape_sql( strcharinfo(0) )+"'",.@my_column_data$ ); 1 Quote Link to comment Share on other sites More sharing options...
Tales Posted August 15, 2014 Group: Members Topic Count: 163 Topics Per Day: 0.03 Content Count: 319 Reputation: 8 Joined: 02/05/12 Last Seen: January 11, 2016 Author Share Posted August 15, 2014 You is the BEST!!!! Quote Link to comment Share on other sites More sharing options...
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.
Link to comment
Share on other sites
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.