Jump to content
  • 0

[ERROR]MYSQL TABLE


Domik309

Question

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

  • 0
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

  1. Quote

     

    1. CREATE DATABASE IF NOT EXISTS `player` /*!40100 DEFAULT CHARACTER SET latin1 */;
    2. USE `player`;
    3.  
    4. -- Dumping structure for table player.map_list
    5. CREATE TABLE IF NOT EXISTS `map_list` (
    6. `channel` int(5) DEFAULT NULL,
    7. `map_index` int(5) DEFAULT NULL,
    8. `port` int(10) DEFAULT NULL,
    9. `host` varchar(100) DEFAULT NULL
    10. ) ENGINE=MyISAM DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC;

     

    créditos: Dali
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...