MYSQL Error! - 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: MYSQL Error! (
/showthread.php?tid=641562)
MYSQL Error! -
Puff - 17.09.2017
Hey there, I am getting a MYSQL error:
PHP код:
http://prntscr.com/gm8i5u
PHP код:
http://prntscr.com/gm8laf
Re: MYSQL Error! -
pollo97 - 22.09.2017
You probably set the column username as primary key and when you try to insert another player with the same name you get this error.
I suggest to use a numeric ID to identify player row on the database table.
Re: MYSQL Error! -
Puff - 22.09.2017
Quote:
Originally Posted by pollo97
You probably set the column username as primary key and when you try to insert another player with the same name you get this error.
I suggest to use a numeric ID to identify player row on the database table.
|
I fixed it by removing unique from the table.