why doesnt update in database
#8

Post the giftbox enum, there should be a ID included. If so you can do it:

pawn Код:
mysql_format(SQL,zzString,sizeof(zzString),"UPDATE `giftboxd` SET `GiftBoxMoney`= '%s' WHERE `ID`= %i", GiftBoxInfo[playerid][pGiftBoxMoney], GiftBoxInfo[playerid][ID]);
    mysql_tquery(SQL,zzString);
Or else making sure it works:
pawn Код:
mysql_format(SQL,zzString,sizeof(zzString),"UPDATE `giftboxd` SET `GiftBoxMoney`= '%s' WHERE `ID`= %i", GiftBoxInfo[playerid][pGiftBoxMoney], GiftBoxInfo[playerid][ID]);
    mysql_tquery(SQL,zzString, "OnUpdateGiftBox", "i", GiftboxInfo[playerid][ID]);

    forward OnUpdateGiftBox(giftboxid);
    public OnUpdateGiftBox(giftboxid)
    {
        if(cache_affected_rows() > 0)
        {
            printf("Saved giftbox id %d", giftboxid);
        }
        else
        {
            printf("An error has occured while saving the giftbox");
        }
        return 1;
    }
But I'm sure you've done the giftbox defines wrong, this one looks weird
pawn Код:
if(IsPlayerInRangeOfPoint(playerid, 5.0, GiftBoxInfo[playerid][pGiftBoxPosX], GiftBoxInfo[playerid][pGiftBoxPosY], GiftBoxInfo[playerid][pGiftBoxPosZ]))
pawn Код:
for(new i = 0; i < MAX_PLAYERS; i++) //you could've done a MAX_GIFTBOX
{
    if(IsPlayerInRangeOfPoint(playerid, 5.0, GiftBoxInfo[i][pGiftBoxPosX], GiftBoxInfo[i][pGiftBoxPosY], GiftBoxInfo[i][pGiftBoxPosZ]))
    {
        //rest of your code
    }
}
Please search before posting and read this https://sampwiki.blast.hk/wiki/MySQL/R33 and this https://www.guru99.com/delete-and-update.html
Reply


Messages In This Thread
why doesnt update in database - by enzulikeS - 06.01.2019, 19:24
Re: why doesnt update in database - by enzulikeS - 07.01.2019, 17:55
Re: why doesnt update in database - by Eoussama - 07.01.2019, 18:12
Re: why doesnt update in database - by enzulikeS - 08.01.2019, 14:48
Re: why doesnt update in database - by enzulikeS - 09.01.2019, 19:22
Re: why doesnt update in database - by enzulikeS - 11.01.2019, 20:38
Re: why doesnt update in database - by userid - 11.01.2019, 20:41
Re: why doesnt update in database - by d3Pedro - 11.01.2019, 22:51

Forum Jump:


Users browsing this thread: 1 Guest(s)