Mysql query doing nothing ?
#1

phpMyAdmin shows no changes in my database no INSERT or CREATE, why ?
I checked my: host, database, pass and username and there all right.
PHP код:
//============================================================================//
//                                  Includes                                  //
//============================================================================//
#include <a_samp>
#include <a_mysql>
#include <zcmd>
#include <sscanf2>
//============================================================================//
//                                  Defines                                   //
//============================================================================//
#define host ""
#define user ""
#define pass ""
#define db ""
//============================================================================//
//                                  Main                                      //
//============================================================================//
main() {}
public 
OnGameModeInit() {
mysql_debug(1);
print(
"-------------------------------------------------------------");
print(
"        Game Mode Loaded!");
print(
"-------------------------------------------------------------");
mysql_connect(hostuserdbpass);
mysql_query("INSERT INTO `accounts` (username, password) VALUES ('Nickname', SHA('Pass'))");
if(
mysql_ping()) {
    print(
"Connection to database successful.");
} else if (!
mysql_ping()) {
    print(
"Connection to database failed.");
} else {
    print(
"Unknown error!");
}
return 
1;

Reply


Messages In This Thread
Mysql query doing nothing ? - by Dotayuri - 25.02.2013, 17:49
Re: Mysql query doing nothing ? - by InfiniTy. - 25.02.2013, 17:53
Re: Mysql query doing nothing ? - by Dotayuri - 25.02.2013, 18:00
Re: Mysql query doing nothing ? - by InfiniTy. - 25.02.2013, 18:01
Re: Mysql query doing nothing ? - by Dotayuri - 25.02.2013, 18:07
Re: Mysql query doing nothing ? - by Dotayuri - 25.02.2013, 18:25
Re: Mysql query doing nothing ? - by InfiniTy. - 25.02.2013, 18:41
Re: Mysql query doing nothing ? - by Dotayuri - 25.02.2013, 18:55
Re: Mysql query doing nothing ? - by Misiur - 25.02.2013, 18:59
Re: Mysql query doing nothing ? - by Dotayuri - 25.02.2013, 19:10

Forum Jump:


Users browsing this thread: 3 Guest(s)