27.01.2017, 23:38
Even wiki is wrong lol
https://sampwiki.blast.hk/wiki/MySQL_Tutorial
This
This line:
Shouldn't be this?:
https://sampwiki.blast.hk/wiki/MySQL_Tutorial
This
Код:
forward ConnectMySQL(); public ConnectMySQL() { mysql_connect(SQL_HOST, SQL_USER, SQL_DB, SQL_PASS)) if(mysql_ping() == 1) { mysql_debug(1); printf("[MYSQL]: Connection to `%s` succesful!", SQL_DB); } else { printf("[MYSQL]: [ERROR]: Connection to `%s` failed!", SQL_DB); } return 1; }
Код:
mysql_connect(SQL_HOST, SQL_USER, SQL_DB, SQL_PASS))
Код:
mysql_connect(SQL_HOST, SQL_USER, SQL_DB, SQL_PASS);