LE, recently I've started seeing odd DB Query errors in my console. I don't think it's harmful, because as far as I know, "Binding" is not implemented yet. Just seeing odd things in the DB regarding bind values as well.
Oddly, 2 of my own characters (John and Ugly) have a bind_x value, no one else does... but players online are throwing this error even without me being there.
Code: Select all
DB Query Error #1264: Out of range value adjusted for column 'bind_x' at row 1
Connect to phpMyAdmin for my EQ2Live DB and you can see the odd values I am talking about in character_details, relating to bind or housing values. Just wondering if maybe a struct is off, maybe? Can't think of why these values would be this odd.
Code: Select all
SELECT bind_zone_id, bind_x, bind_y, bind_z, bind_heading, house_zone_id FROM `character_details` ORDER BY bind_zone_id DESC LIMIT 0, 30;
SELECT bind_zone_id, bind_x, bind_y, bind_z, bind_heading, house_zone_id FROM `character_details` ORDER BY bind_x DESC LIMIT 0, 30;
just example queries, showing bind info ordered by desc values so you can see the odd values.