Ich habe mein altes Script aufm USB Stick gefunden und wollte es auf 0.3.7 testen. Nun habe ich das Problem das MYSQL nicht mehr connecten will will mir die jemand helfen?
Define's:
Code
#define mysql_host "127.0.0.1"
#define mysql_user "root"
#define mysql_password "Steven1995"
#define mysql_database "samp"
New:
OnGamemodeInit:
Code
handle = mysql_connect(mysql_host, mysql_user, mysql_database, mysql_password);
if (mysql_errno(handle))
{
print("[mysql]: Failed to connect mysql database.");
}
else
{
mysql_query(handle, "CREATE TABLE IF NOT EXISTS `users` (`id` int(11) NOT NULL AUTO_INCREMENT, `username` text NOT NULL, `password` text NOT NULL, `gender` int(1) NOT NULL DEFAULT '1', `birthdate` text NOT NULL, `skin` int(3) NOT NULL DEFAULT '0', PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;", false);
print("[mysql]: Success connect to mysql database.");
}
Alles anzeigen
OnGamemodeExit: