SA-MP Forums Archive
MySQL doubt - 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 doubt (/showthread.php?tid=430896)



MySQL doubt - Fernado Samuel - 15.04.2013

Removed, Thanks


Re: MySQL doubt - rhds - 15.04.2013

http://dev.mysql.com/doc/refman/5.0/...increment.html

Quote:

CREATE TABLE animals (
id MEDIUMINT NOT NULL AUTO_INCREMENT,
name CHAR(30) NOT NULL,
PRIMARY KEY (id)
) ENGINE=MyISAM;

Auto increment is the one who will give your players ID.


Re: MySQL doubt - Djole1337 - 15.04.2013

Read what he said ^ also
mysql_insert_id(); - generates ID. (SA:MP plugin)