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

Windows Missing SQL Query.

Klaien

C:\Program Files\Root\
Joined
Nov 30, 2008
Messages
502
Reaction score
6
Location
The Netherlands
Hi,

I'm not a pro in sql things, so I ask you guys to help, When I'm running my server (Crying Damson 0.3.6PL1 (compiled to 8.54-8.57)) I get this Error all the time:
mysql_real_query(): SELECT * FROM z_ots_comunication WHERE `type` = 'login'; - MYSQL ERROR: Table 'theforgottenserver.z_ots_comunication' doesn't exist (1146)

So my question is, How to add the z_ots_comunication thing in SQL?
What lines to add in the mysql.sql or in PHPmyadmin?

I'll rep++ you if you can help me out.
 
Code:
CREATE TABLE IF NOT EXISTS `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`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=1993 ;
 
Back
Top Bottom