MySQL Dialog Won't Open
#2

You are not querying the database when the player connects, therefore any data stored there is not being found.

You need something like this:
Код:
format(query,sizeof(query),"SELECT `Username` FROM `Accounts` WHERE `Username` = '%s' LIMIT 0 , 30;",name);
mysql_query(query);
mysql_store_result();
if(mysql_num_rows() != 0)
{
        //do something here
}
Reply


Messages In This Thread
MySQL Dialog Won't Open - by AphexCCFC - 22.01.2013, 22:04
Re: MySQL Dialog Won't Open - by [jS]Thomas - 22.01.2013, 22:13
Re: MySQL Dialog Won't Open - by AphexCCFC - 22.01.2013, 22:21
Re: MySQL Dialog Won't Open - by [jS]Thomas - 22.01.2013, 22:23
Re: MySQL Dialog Won't Open - by AphexCCFC - 22.01.2013, 22:30
Re: MySQL Dialog Won't Open - by AphexCCFC - 22.01.2013, 22:32
Re: MySQL Dialog Won't Open - by [jS]Thomas - 22.01.2013, 22:33
Re: MySQL Dialog Won't Open - by AphexCCFC - 22.01.2013, 22:35

Forum Jump:


Users browsing this thread: 2 Guest(s)