• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Mysql error in consoule

Xaiman

New Member
Joined
Feb 27, 2010
Messages
94
Reaction score
0
I have everything set up but when i run my server.exe i get this error like ever 15 sec

Code:
[12/05/2010 22:29:53] mysql_real_query(): SELECT * FROM z_ots_comunication WHERE `type` = 'login'; - MYSQL ERROR: Table 'myserv.z_ots_comunication' doesn't exist (1146)
 
Run this sql query.

Code:
create table z_ots_comunication
(
id int(11) not null auto_increment,
name varchar(255) not null,
type varchar(255) not null,
action varchar(255) not null,
param1 varchar(255) not null,
param2 varchar(255) not null,
param3 varchar(255) not null,
param4 varchar(255) not null,
param5 varchar(255) not null,
param6 varchar(255) not null,
param7 varchar(255) not null,
delete_it int(2) not null default 1,
primary key(id)
)
type=innodb;
 
Back
Top