Myth Posted July 11, 2013 Group: Members Topic Count: 59 Topics Per Day: 0.01 Content Count: 225 Reputation: 5 Joined: 05/30/12 Last Seen: March 21 Share Posted July 11, 2013 (edited) when i got logout all my items in my inventory/equipment gone heres the sql error Info]: Loading Char Data (2000000) [info]: Char load request (150000) : DB error - Unknown column 'bound' in 'field list'[Debug]: at c:\program files\rock\my ragnarok files\src\char\char.c:1308 - SELECT `id`, `nameid`, `amount`, `equip`, `identify`, `refine`, `attribute`, `expire_time`, `favorite`, `bound`, `unique_id`, `card0`, `card1`, `card2`, `card3` FROM `inventory` WHERE `char_id`=? LIMIT 100[sql]: DB error - Statement not prepared[Debug]: at c:\program files\rock\my ragnarok files\src\char\char.c:1339 - SELECT `id`, `nameid`, `amount`, `equip`, `identify`, `refine`, `attribute`, `expire_time`, `bound`, `unique_id`, `card0`, `card1`, `card2`, `card3` FROM `cart_inventory` WHERE `char_id`=? LIMIT 100[sql]: DB error - Unknown column 'bound' in 'field list'[Debug]: at c:\program files\rock\my ragnarok files\src\char\int_storage.c:47 - SELECT `id`,`nameid`,`amount`,`equip`,`identify`,`refine`,`attribute`,`expire_time`,`bound`,`unique_id`,`card0`,`card1`,`card2`,`card3` FROM `storage` WHERE `account_id`='2000000' ORDER BY `nameid`[sql]: DB error - Statement not prepared[info]: storage load complete from DB - id: 2000000 (total: 0)[sql]: DB error - Unknown column 'bound' in 'field list' they got invisible m using SVN Revision: '17378'. Edited July 11, 2013 by Myth Quote Link to comment Share on other sites More sharing options...
Patskie Posted July 11, 2013 Group: Members Topic Count: 50 Topics Per Day: 0.01 Content Count: 1702 Reputation: 241 Joined: 09/05/12 Last Seen: 56 minutes ago Share Posted July 11, 2013 Execute this on your database : ALTER TABLE `inventory` ADD COLUMN `bound` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER `favorite`; ALTER TABLE `cart_inventory` ADD COLUMN `bound` TINYINT(3) UNSIGNED NOT NULL default '0' AFTER `expire_time`; ALTER TABLE `storage` ADD COLUMN `bound` TINYINT(3) UNSIGNED NOT NULL default '0' AFTER `expire_time`; ALTER TABLE `guild_storage` ADD COLUMN `bound` TINYINT(3) UNSIGNED NOT NULL default '0' AFTER `expire_time`; Quote Link to comment Share on other sites More sharing options...
Myth Posted July 11, 2013 Group: Members Topic Count: 59 Topics Per Day: 0.01 Content Count: 225 Reputation: 5 Joined: 05/30/12 Last Seen: March 21 Author Share Posted July 11, 2013 where? in ragnarok sql? the same with equipment Quote Link to comment Share on other sites More sharing options...
Patskie Posted July 11, 2013 Group: Members Topic Count: 50 Topics Per Day: 0.01 Content Count: 1702 Reputation: 241 Joined: 09/05/12 Last Seen: 56 minutes ago Share Posted July 11, 2013 Yaa ragnarok sql. There is an upgrade of sql on trunk/sql-files/upgrades/upgrade_svn17351.sql at SVN 17351. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.