MySQL R31 - Won't update
#5

pawn Код:
forward Update(playerid, type);

#define pLevelx         1
#define pAdminx         2
#define pMoneyx         3
#define pLastLoginx     4


enum pInfo
{
    pKey[128], pLevel, pAdmin, pEmail, pReg, pCash, pLastLogin[128]
};

new PlayerInfo[MAX_PLAYERS][pInfo];

public Update(playerid, type)
{
    if(IsPlayerConnected(playerid))
    {
        new var[256];
        new playerName[MAX_PLAYER_NAME];
        GetPlayerName(playerid, playerName, sizeof(playerName));
        {
            switch(type)
            {
                case pLevelx:
                {
                    format(var, 256,"UPDATE `players` SET `Level`='%d' WHERE `username`='%s'",PlayerInfo[playerid][pLevel],playerName);
                    mysql_function_query(handle ,var, false, "", "");
                }
                case pAdminx:
                {
                    format(var, 256,"UPDATE `players` SET `AdminLevel`='%d' WHERE `username`='%s'",PlayerInfo[playerid][pAdmin],playerName);
                    mysql_function_query(handle ,var, false, "", "");
                }
                case pMoneyx:
                {
                    format(var, 256,"UPDATE `players` SET `Money`='%d' WHERE `username`='%s'",PlayerInfo[playerid][pCash],playerName);
                    mysql_function_query(handle ,var, false, "", "");
                }
            }
        }
    }
}
But nothing...
Reply


Messages In This Thread
MySQL R31 - Won't update - by WopsS - 06.09.2013, 19:21
Re: MySQL R31 - Won't update - by dusk - 06.09.2013, 19:24
Re: MySQL R31 - Won't update - by WopsS - 06.09.2013, 19:26
Re: MySQL R31 - Won't update - by Konstantinos - 06.09.2013, 19:36
Re: MySQL R31 - Won't update - by WopsS - 06.09.2013, 19:41
Re: MySQL R31 - Won't update - by Luis- - 06.09.2013, 19:45
Re: MySQL R31 - Won't update - by WopsS - 06.09.2013, 19:46
Re: MySQL R31 - Won't update - by WopsS - 06.09.2013, 20:37

Forum Jump:


Users browsing this thread: 1 Guest(s)