i Need HELP
#1

Hi Guys this Code:
Код:
stock LadeSpielerDaten(playerid) {
	new query[128],data[128],bedienung[40],playername[24];
	GetPlayerName(playerid,playername,sizeof(playername));
	format(bedienung,sizeof(bedienung),"Name='%s'",playername);
	format(query,sizeof(query),"SELECT * FROM spieler WHERE %s", bedienung);
	printf("%s",bedienung);
	mysql_query(query);
	mysql_store_result();
	if(mysql_num_rows()) {
		mysql_fetch_field_row(data,"AdminLevel");
		SpielerInfo[playerid][AdminLevel]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"Money");
		SpielerInfo[playerid][Money]=strval(data);
		GivePlayerCash(playerid,strval(data));
		strdel(data,0,100);

		mysql_fetch_field_row(data,"Bank");
		SpielerInfo[playerid][Bank]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"Faction");
		SpielerInfo[playerid][Faction]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"Rank");
		SpielerInfo[playerid][Rank]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"HouseKey");
		SpielerInfo[playerid][HouseKey]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"BizKey");
		SpielerInfo[playerid][BizKey]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"Skin");
		SpielerInfo[playerid][Skin]=strval(data);
		SetPlayerSkin(playerid,strval(data));
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"Spawn1");
		SpielerInfo[playerid][Spawn][0]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"Spawn2");
		SpielerInfo[playerid][Spawn][1]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"Spawn3");
		SpielerInfo[playerid][Spawn][2]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"Spawn4");
		SpielerInfo[playerid][Spawn][3]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"Spawn5");
		SpielerInfo[playerid][InteriorSpawn]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"Reg");
		SpielerInfo[playerid][Reg]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"Sex");
		SpielerInfo[playerid][Sex]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"Wallet");
		SpielerInfo[playerid][Wallet]=strval(data);
		SetPlayerWalletCash(playerid,strval(data));
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"Renting");
		SpielerInfo[playerid][Renting]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"Products");
		SpielerInfo[playerid][Products]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"PhoneNumber");
		SpielerInfo[playerid][PhoneNumber]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"Minutes");
		SpielerInfo[playerid][Minutes]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"Spawn6");
		SpielerInfo[playerid][WorldSpawn]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"Arrested");
		SpielerInfo[playerid][Arrested]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"Prisoned");
		SpielerInfo[playerid][Prisoned]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"Jailed");
		SpielerInfo[playerid][Jailed]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"JailTime");
		SpielerInfo[playerid][JailTime]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"Cell");
		SpielerInfo[playerid][Cell]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"Towe");
		SpielerInfo[playerid][Towe]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"Linked");
		SpielerInfo[playerid][Linked]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"ForumName");
		SpielerInfo[playerid][ForumName]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"ForumPassword");
		SpielerInfo[playerid][ForumPassword]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"wLicense");
		SpielerInfo[playerid][wLicense]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"Job");
		SpielerInfo[playerid][pJob]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"Donator");
		SpielerInfo[playerid][Donator]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"CarParts");
		SpielerInfo[playerid][CarParts]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"PlayingTime");
		SpielerInfo[playerid][PlayingTime]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"FightingStyle");
		SpielerInfo[playerid][FightingStyle]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"Materials");
		SpielerInfo[playerid][Materials]=strval(data);
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"GesuchtLevel");
		SpielerInfo[playerid][GesuchtLevel]=strval(data);
		SetPlayerWantedLevel(playerid,strval(data));
		strdel(data,0,100);
		
		mysql_fetch_field_row(data,"Level");
		SpielerInfo[playerid][Level]=strval(data);
		SetPlayerScore(playerid,strval(data));
		strdel(data,0,100);
		
		printf("Der Spieler %s wurde zu 100% erfolgreich Geladen...",GetUserName(playerid));
		print("© By New York Roleplay Community");

		SendClientMessage(playerid,COLOR_SYSTEM,"New York Roleplay____________________________");
		if(SpielerInfo[playerid][AdminLevel] >= 1) {
			format(strring,128,"Dein Admin Level betrдgt: %d",SpielerInfo[playerid][AdminLevel]);
			SendClientMessage(playerid,COLOR_RED,strring);
		}
		if(SpielerInfo[playerid][Donator] >= 1) {
			format(strring,128,"Du bist Premium Nutzer Level %d",SpielerInfo[playerid][Donator]);
			SendClientMessage(playerid,COLOR_RED,strring);
		}
		format(strring,128,"Du bist Level %d",SpielerInfo[playerid][Level]);
		SendClientMessage(playerid,COLOR_RED,strring);
		format(strring,128,"© New York Roleplay v.{8000FF}%s",GAMEMODEVERSION);
		SendClientMessage(playerid,COLOR_BLUE,strring);
		SendClientMessage(playerid,COLOR_SYSTEM,"New York Roleplay____________________________");
	}
	mysql_free_result();
	return 1;
}
donґt Load Anything....
can you help me?

G-StylezZz MySQL plugin
Reply
#2

Maybe you have some problems with MySQL connection, or there aren't some tables in MySQL database.
Reply
#3

No it saves all Perfect...
Reply
#4

Your WHERE condition is incomplete:

pawn Код:
WHERE %s
The correct syntax should be:

pawn Код:
WHERE item = '%s'
Reply
#5

Quote:
Originally Posted by Calgon
Посмотреть сообщение
Your WHERE condition is incomplete:

pawn Код:
WHERE %s
The correct syntax should be:

pawn Код:
WHERE item = '%s'
Its there just in another format, just above, don't ask me why though.
Reply
#6

Sorry, I'm blind. Have you enabled debug mode in your MySQL plugin and checked what the logs show?
Reply
#7

Yes here is the Text:

Код:
[16:21:42]  

[16:21:42] ---------------------------

[16:21:42] MySQL Debugging activated (11/16/11)

[16:21:42] ---------------------------

[16:21:42]  

[16:21:42] >> mysql_ping( Connection handle: 1 )

[16:21:42] CMySQLHandler::Ping() - Connection is still alive.

[16:21:42]  

[16:21:42] ---------------------------

[16:21:42] MySQL Debugging activated (11/16/11)

[16:21:42] ---------------------------

[16:21:42]  

[16:21:42] >> mysql_query( Connection handle: 1 )

[16:21:42] CMySQLHandler::Query(resultID) - Threaded query with id 1 started. (Extra ID: -1)

[16:21:42] >> mysql_query( Connection handle: 1 )

[16:21:42] CMySQLHandler::Query(resultID) - Threaded query with id 4 started. (Extra ID: -1)

[16:21:42] >> mysql_query( Connection handle: 1 )

[16:21:42] CMySQLHandler::Query(resultID) - Threaded query with id 5 started. (Extra ID: -1)

[16:21:42] >> mysql_query( Connection handle: 1 )

[16:21:42] CMySQLHandler::Query(resultID) - Threaded query with id 6 started. (Extra ID: -1)

[16:21:42] >> mysql_query( Connection handle: 1 )

[16:21:42] CMySQLHandler::Query(resultID) - Threaded query with id 8 started. (Extra ID: -1)

[16:21:42] >> mysql_query( Connection handle: 1 )

[16:21:42] CMySQLHandler::Query(resultID) - Threaded query with id 7 started. (Extra ID: -1)

[16:21:42] >> mysql_query( Connection handle: 1 )

[16:21:42] CMySQLHandler::Query(resultID) - Threaded query with id 9 started. (Extra ID: -1)

[16:21:42] >> mysql_query( Connection handle: 1 )

[16:21:42] CMySQLHandler::ProcessQueryThread(SELECT * FROM Vehicles) - Data is getting passed to OnQueryFinish() - (Threadsafe: Yes)

[16:21:42] CMySQLHandler::Query(resultID) - Threaded query with id 10 started. (Extra ID: -1)

[16:21:42] >> mysql_query( Connection handle: 1 )

[16:21:42] CMySQLHandler::Query(resultID) - Threaded query with id 11 started. (Extra ID: -1)

[16:21:42] >> mysql_query( Connection handle: 1 )

[16:21:42] CMySQLHandler::Query(resultID) - Threaded query with id 12 started. (Extra ID: -1)

[16:21:42] >> mysql_query( Connection handle: 1 )

[16:21:42] CMySQLHandler::Query(resultID) - Threaded query with id 13 started. (Extra ID: -1)

[16:21:43] OnQueryFinish(1,"SELECT * FROM Vehicles") - Called.

[16:21:43] >> mysql_store_result( Connection handle: 1 )

[16:21:43] CMySQLHandler::StoreResult() - Result was stored.

[16:21:43] >> mysql_fetch_row_format( Connection handle: 1 )

[16:21:43] CMySQLHandler::FetchRow() - Return: 0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|WayNe TraiiN|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0

[16:21:43] >> mysql_num_rows( Connection handle: 1 )

[16:21:43] CMySQLHandler::NumRows() - Returned 6 row(s)

[16:21:43] CMySQLHandler::ProcessQueryThread(SELECT * FROM Mapicons) - Data is getting passed to OnQueryFinish() - (Threadsafe: Yes)

[16:21:43] OnQueryFinish(4,"SELECT * FROM Mapicons") - Called.

[16:21:43] >> mysql_store_result( Connection handle: 1 )

[16:21:43] CMySQLHandler::StoreResult() - Result was stored.

[16:21:43] >> mysql_fetch_row_format( Connection handle: 1 )

[16:21:43] CMySQLHandler::FetchRow() - Return: 2699|-1096|69|55|12|0

[16:21:43] >> mysql_num_rows( Connection handle: 1 )

[16:21:43] CMySQLHandler::NumRows() - Returned 2 row(s)

[16:21:43] >> mysql_fetch_row_format( Connection handle: 1 )

[16:21:43] CMySQLHandler::FetchRow() - Return: 2741|-2004|14|55|12|0

[16:21:43] >> mysql_num_rows( Connection handle: 1 )

[16:21:43] CMySQLHandler::NumRows() - Returned 2 row(s)

[16:21:43] >> mysql_fetch_row_format( Connection handle: 1 )

[16:21:43] >> mysql_free_result( Connection handle: 1 )

[16:21:43] CMySQLHandler::FreeResult() - Result was successfully free'd.

[16:21:43] CMySQLHandler::ProcessQueryThread(SELECT * FROM OOCRooms) - Data is getting passed to OnQueryFinish() - (Threadsafe: Yes)

[16:21:43] OnQueryFinish(5,"SELECT * FROM OOCRooms") - Called.

[16:21:43] >> mysql_store_result( Connection handle: 1 )

[16:21:43] CMySQLHandler::StoreResult() - Result was stored.

[16:21:43] >> mysql_num_rows( Connection handle: 1 )

[16:21:43] CMySQLHandler::NumRows() - Returned 0 row(s)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=0) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=1) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=2) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=3) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=4) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=5) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=6) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=7) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=8) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=9) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=10) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=11) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=12) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=13) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=14) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=15) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=16) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=17) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=18) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=19) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=20) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=21) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=22) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=23) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=24) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=25) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=26) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=27) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=28) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=29) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=30) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=31) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=32) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=33) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=34) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=35) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=36) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=37) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=38) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=39) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=40) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=41) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=42) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=43) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=44) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=45) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=46) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=47) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=48) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=49) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=50) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=51) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=52) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=53) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=54) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=55) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=56) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=57) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=58) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=59) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=60) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=61) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=62) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=63) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=64) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=65) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=66) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=67) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=68) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=69) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=70) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=71) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=72) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=73) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=74) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=75) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=76) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=77) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=78) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=79) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=80) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=81) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=82) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=83) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=84) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=85) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=86) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=87) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=88) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=89) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=90) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=91) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=92) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=93) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=94) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=95) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=96) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=97) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=98) - Successfully executed.

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(INSERT INTO OOCRooms (Owned, Locked, Owner, Password, Owner) VALUES(0,0,'None','None', 'None')) - An error has occured. (Error ID: 1110, Column 'Owner' specified twice)

[16:21:43] >> mysql_query( Connection handle: 1 )

[16:21:43] CMySQLHandler::Query(UPDATE OOCRooms SET Owned=0,Locked=0,Owner='',Password='',MOTD='' WHERE ooc_id=99) - Successfully executed.

[16:21:43] >> mysql_fetch_row_format( Connection handle: 1 )

[16:21:43] >> mysql_free_result( Connection handle: 1 )

[16:21:43] CMySQLHandler::FreeResult() - Result was successfully free'd.

[16:21:43] CMySQLHandler::ProcessQueryThread(SELECT * FROM Gas_Stations) - Data is getting passed to OnQueryFinish() - (Threadsafe: Yes)

[16:21:43] OnQueryFinish(6,"SELECT * FROM Gas_Stations") - Called.

[16:21:43] >> mysql_store_result( Connection handle: 1 )

[16:21:43] CMySQLHandler::StoreResult() - Result was stored.

[16:21:43] >> mysql_fetch_row_format( Connection handle: 1 )

[16:21:43] >> mysql_free_result( Connection handle: 1 )

[16:21:43] CMySQLHandler::FreeResult() - Result was successfully free'd.

[16:21:43] CMySQLHandler::ProcessQueryThread(SELECT * FROM Businesses) - Data is getting passed to OnQueryFinish() - (Threadsafe: Yes)

[16:21:43] OnQueryFinish(8,"SELECT * FROM Businesses") - Called.

[16:21:43] >> mysql_store_result( Connection handle: 1 )

[16:21:43] CMySQLHandler::StoreResult() - Result was stored.

[16:21:43] >> mysql_fetch_row_format( Connection handle: 1 )

[16:21:43] CMySQLHandler::FetchRow() - Return: NULL|1316|-898|40|NULL|NULL|NULL|NULL|302322|None|NULL|NULL|NULL|NULL|NULL|NULL|NULL

[16:21:43] >> mysql_num_rows( Connection handle: 1 )

[16:21:43] CMySQLHandler::NumRows() - Returned 1 row(s)

[16:21:43] >> mysql_fetch_row_format( Connection handle: 1 )

[16:21:43] >> mysql_free_result( Connection handle: 1 )

[16:21:43] CMySQLHandler::FreeResult() - Result was successfully free'd.

[16:21:43] CMySQLHandler::ProcessQueryThread(SELECT * FROM Houses) - Data is getting passed to OnQueryFinish() - (Threadsafe: Yes)

[16:21:43] OnQueryFinish(7,"SELECT * FROM Houses") - Called.

[16:21:43] >> mysql_store_result( Connection handle: 1 )

[16:21:43] CMySQLHandler::StoreResult() - Result was stored.

[16:21:43] >> mysql_fetch_row_format( Connection handle: 1 )

[16:21:43] >> mysql_free_result( Connection handle: 1 )

[16:21:43] CMySQLHandler::FreeResult() - Result was successfully free'd.

[16:21:43] CMySQLHandler::ProcessQueryThread(SELECT * FROM Buildings) - Data is getting passed to OnQueryFinish() - (Threadsafe: Yes)

[16:21:43] OnQueryFinish(9,"SELECT * FROM Buildings") - Called.

[16:21:43] >> mysql_store_result( Connection handle: 1 )

[16:21:43] CMySQLHandler::StoreResult() - Result was stored.

[16:21:43] >> mysql_fetch_row_format( Connection handle: 1 )

[16:21:43] CMySQLHandler::FetchRow() - Return: 0|1020|1037|11|3|385|174|1008|Universitдt

[16:21:43] >> mysql_num_rows( Connection handle: 1 )

[16:21:43] CMySQLHandler::NumRows() - Returned 1 row(s)

[16:21:43] >> mysql_fetch_row_format( Connection handle: 1 )

[16:21:43] >> mysql_free_result( Connection handle: 1 )

[16:21:43] CMySQLHandler::FreeResult() - Result was successfully free'd.

[16:21:43] CMySQLHandler::ProcessQueryThread(SELECT * FROM Factions) - Data is getting passed to OnQueryFinish() - (Threadsafe: Yes)

[16:21:43] OnQueryFinish(10,"SELECT * FROM Factions") - Called.

[16:21:43] >> mysql_store_result( Connection handle: 1 )

[16:21:43] CMySQLHandler::StoreResult() - Result was stored.

[16:21:43] >> mysql_fetch_row_format( Connection handle: 1 )

[16:21:43] >> mysql_free_result( Connection handle: 1 )

[16:21:43] CMySQLHandler::FreeResult() - Result was successfully free'd.

[16:21:43] CMySQLHandler::ProcessQueryThread(SELECT * FROM Dorms) - Data is getting passed to OnQueryFinish() - (Threadsafe: Yes)

[16:21:43] OnQueryFinish(11,"SELECT * FROM Dorms") - Called.

[16:21:43] >> mysql_store_result( Connection handle: 1 )

[16:21:43] CMySQLHandler::StoreResult() - Result was stored.

[16:21:43] >> mysql_fetch_row_format( Connection handle: 1 )

[16:21:43] >> mysql_free_result( Connection handle: 1 )

[16:21:43] CMySQLHandler::FreeResult() - Result was successfully free'd.

[16:21:43] CMySQLHandler::ProcessQueryThread() - Error will be triggered to OnQueryError()

[16:21:43] CMySQLHandler::ProcessQueryThread(SELECT * FROM GangZones) - Data is getting passed to OnQueryFinish() - (Threadsafe: Yes)

[16:21:43] OnQueryFinish(13,"SELECT * FROM GangZones") - Called.

[16:21:43] >> mysql_store_result( Connection handle: 1 )

[16:21:43] CMySQLHandler::StoreResult() - Result was stored.

[16:21:43] >> mysql_fetch_row_format( Connection handle: 1 )

[16:22:24] >> mysql_query( Connection handle: 1 )

[16:22:24] CMySQLHandler::Query(SELECT * FROM spieler WHERE Name = 'WayNe TraiiN') - Successfully executed.

[16:22:24] >> mysql_store_result( Connection handle: 1 )

[16:22:24] CMySQLHandler::StoreResult() - Result was stored.

[16:22:24] >> mysql_num_rows( Connection handle: 1 )

[16:22:24] CMySQLHandler::NumRows() - Returned 0 row(s)

[16:22:24] >> mysql_num_rows( Connection handle: 1 )

[16:22:24] CMySQLHandler::NumRows() - Returned 0 row(s)

[16:22:24] >> mysql_free_result( Connection handle: 1 )

[16:22:24] CMySQLHandler::FreeResult() - Result was successfully free'd.

[16:22:25] >> mysql_real_escape_string( Connection handle: 1 )

[16:22:25] CMySQLHandler::EscapeString(WayNe_TraiiN); - Escaped 12 characters to WayNe_TraiiN.

[16:22:25] >> mysql_query( Connection handle: 1 )

[16:22:25] CMySQLHandler::Query(SELECT * FROM spieler WHERE Name = 'WayNe_TraiiN') - Successfully executed.

[16:22:25] >> mysql_store_result( Connection handle: 1 )

[16:22:25] CMySQLHandler::StoreResult() - Result was stored.

[16:22:25] >> mysql_num_rows( Connection handle: 1 )

[16:22:25] CMySQLHandler::NumRows() - Returned 1 row(s)

[16:22:29] >> mysql_real_escape_string( Connection handle: 1 )

[16:22:29] CMySQLHandler::EscapeString(WayNe_TraiiN); - Escaped 12 characters to WayNe_TraiiN.

[16:22:29] >> mysql_query( Connection handle: 1 )

[16:22:29] CMySQLHandler::Query(SELECT Password FROM spieler WHERE Name='WayNe_TraiiN') - Successfully executed.

[16:22:29] >> mysql_store_result( Connection handle: 1 )

[16:22:29] CMySQLHandler::StoreResult() - Result was stored.

[16:22:29] >> mysql_fetch_row_format( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchRow() - Return: klo123

[16:22:29] >> mysql_free_result( Connection handle: 1 )

[16:22:29] CMySQLHandler::FreeResult() - Result was successfully free'd.

[16:22:29] >> mysql_query( Connection handle: 1 )

[16:22:29] CMySQLHandler::Query(SELECT * FROM spieler WHERE Name='WayNe_TraiiN') - Successfully executed.

[16:22:29] >> mysql_store_result( Connection handle: 1 )

[16:22:29] CMySQLHandler::StoreResult() - Result was stored.

[16:22:29] >> mysql_num_rows( Connection handle: 1 )

[16:22:29] CMySQLHandler::NumRows() - Returned 1 row(s)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(AdminLevel) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(Money) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(Bank) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(Faction) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(Rank) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(HouseKey) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(BizKey) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(Skin) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(Spawn1) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(Spawn2) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(Spawn3) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(Spawn4) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(Spawn5) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(Reg) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(Sex) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(Wallet) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(Renting) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(Products) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(PhoneNumber) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(Minutes) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(Spawn6) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(Arrested) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(Prisoned) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(Jailed) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(JailTime) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(Cell) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(Towe) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(Linked) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(ForumName) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(ForumPassword) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(wLicense) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(Job) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(Donator) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(CarParts) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(PlayingTime) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(FightingStyle) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(Materials) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(GesuchtLevel) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_fetch_field_row( Connection handle: 1 )

[16:22:29] CMySQLHandler::FetchField(Level) - You cannot call this function now. (Reason: Fields/Rows are empty.)

[16:22:29] >> mysql_free_result( Connection handle: 1 )

[16:22:29] CMySQLHandler::FreeResult() - Result was successfully free'd.

[16:22:49] >> mysql_ping( Connection handle: 1 )

[16:22:49] CMySQLHandler::Ping() - Connection is still alive.
Problem?
Reply
#8

Add mysql_retrieve_row() just below mysql_num_rows() to load your query results in to memory.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)