SA-MP Forums Archive
nothing inserted to database - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: nothing inserted to database (/showthread.php?tid=662542)



nothing inserted to database - enzulikeS - 04.01.2019

Код:
if(dialogid == DIALOG_GIFTBOXOB)
	{
    	if(!response) return 1;
    	{
    		new Float: pos[3]; new zzgQuery[0] = EOS;
			GetPlayerPos(playerid, pos[0], pos[1], pos[2]);

			GiftBoxInfo[playerid][pGiftBoxOn] = 1;
		    SCM(playerid, -1, "Giftbox activated");
		    
		    GiftBoxInfo[playerid][pGiftBoxPosX] = pos[0];
		    GiftBoxInfo[playerid][pGiftBoxPosY] = pos[1];
		    GiftBoxInfo[playerid][pGiftBoxPosZ] = pos[2];
		    GiftBoxInfo[playerid][pGiftboxModel] = CreateObject(strval(inputtext), GiftBoxInfo[playerid][pGiftBoxPosX], GiftBoxInfo[playerid][pGiftBoxPosY], GiftBoxInfo[playerid][pGiftBoxPosZ], 0.00000, 0.00000, 0.00000);
	    	mysql_format(SQL, zzgQuery, sizeof(zzgQuery), "INSERT INTO giftboxd (`GiftBoxOn`, `GiftboxModel`, `GiftboxPosX`, `GiftboxPosY`, `GiftboxPosZ`) VALUES ('1','%d', '%f', '%f', '%f')",strval(inputtext), GiftBoxInfo[playerid][pGiftBoxPosX], GiftBoxInfo[playerid][pGiftBoxPosY], GiftBoxInfo[playerid][pGiftBoxPosZ]);
		    mysql_tquery(SQL, zzgQuery, "", "");
		}
	}
why doesnt this insert something in database?


Re: nothing inserted to database - enzulikeS - 04.01.2019

shit, fixed

new Float: pos[3]; new zzgQuery[0] = EOS;

here was the problem xD