Domik309 Posted January 23, 2020 Report Share Posted January 23, 2020 Hi, i got this Mysql error..i know that table "player.map_list" doesn't exist but i don't know where i can get another one or new.. SYSERR: Jan 23 20:07:24 :: DirectQuery: AsyncSQL::DirectQuery : mysql_query error: Table 'player.map_list' doesn't exist query: DELETE FROM map_list where channel = 1 and map_index=240 Is there anyone who can help me solve this? Of course i try google, but i've found nothing. Thanks Quote Link to comment Share on other sites More sharing options...
0 NazoX Posted January 30, 2020 Report Share Posted January 30, 2020 En 23/1/2020 a las 21:24, Domik309 dijo: Hola, recibí este error de Mysql ... sé que la tabla "player.map_list" no existe pero no sé dónde puedo obtener otra o una nueva ... SYSERR: 23 de enero 20:07:24 :: DirectQuery: AsyncSQL :: DirectQuery: error de mysql_query: La tabla 'player.map_list' no existe consulta: DELETE FROM map_list donde channel = 1 y map_index = 240 ¿Hay alguien que pueda ayudarme a resolver esto? Por supuesto que trato de google, pero no he encontrado nada. Gracias try : Quote CREATE DATABASE IF NOT EXISTS `player` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `player`; -- Dumping structure for table player.map_list CREATE TABLE IF NOT EXISTS `map_list` ( `channel` int(5) DEFAULT NULL, `map_index` int(5) DEFAULT NULL, `port` int(10) DEFAULT NULL, `host` varchar(100) DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC; créditos: Dali Quote Link to comment Share on other sites More sharing options...
Question
Domik309
Hi, i got this Mysql error..i know that table "player.map_list" doesn't exist but i don't know where i can get another one or new..
SYSERR: Jan 23 20:07:24 :: DirectQuery: AsyncSQL::DirectQuery : mysql_query error: Table 'player.map_list' doesn't exist query: DELETE FROM map_list where channel = 1 and map_index=240
Is there anyone who can help me solve this? Of course i try google, but i've found nothing. Thanks
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.