• 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 REP+

lewis1234

Be Smart.
Joined
Oct 9, 2011
Messages
108
Solutions
1
Reaction score
10
Hello When i open my ot after like a minute i get this Error

Code:
mysql_real_query(): INSERT INTO `lottery` (`name`, `item`) VALUES ('Admin Critical', 'crystal coin'); - MYSQL ERROR: Table 'lmaoot.lottery' doesn't exist (1146)


Anyone got Any ideas?

Btw if u need this kind of info-
Crying Damons 0.3.6 v5

Thanks <3
 
Execute the following query's at phpmyadmin:

Code:
CREATE TABLE `lottery` (
   `id` int(11) NOT NULL auto_increment,
   `name` varchar(255) NOT NULL,
   `item` varchar(255) NOT NULL,
   PRIMARY KEY  (`id`)
 ) ENGINE=MyISAM  DEFAULT CHARSET=latin1;

Code:
INSERT INTO `lottery`(`id`, `name`, `item`) VALUES (NULL , 'Nobody', 'nothing');
 
Back
Top