• 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 Unknown column 'item' in field list (1054)

Joined
Sep 24, 2012
Messages
605
Reaction score
33
Location
Netherlands
Hello Guys

I ran into this problem in my console.
I get this error when the lottery takes place.

Code:
Unknown column 'item' in field list <1054>

I know it has something to do with a SQL querty, but i cant seem to find the querty to execute in DB.
 
Yes i have the table for lottery, i used this

SQL:
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;

and this

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

while your looking at it, can you take a look at my other problem aswell?
http://otland.net/f16/problems-loading-login-lua-183250/
 
Thanks, thats the one indeed.
I'll check when I'm back at home and ill update the post.

Did you take a look at my other issue? The one mentioned one post above you.
 
Thanks, thats the one indeed.
I'll check when I'm back at home and ill update the post.

Did you take a look at my other issue? The one mentioned one post above you.

Yes, you can take a look here. No errors appeared when I loaded the script.
 
Back
Top