Re: [HELP] Error .bat v62
Look at your settings for the collumn "owner".
Re: [HELP] Error .bat v62
In MySQL columns are sorted like VARCHAR(47), or INT(11), and etc. So, check "owner" in your MySQL and change the number in parentheses to a larger number. I suggest int(11), so it won't go over your limit. You right-click on your table, click Edit Table, and find "owner" to look at the column's setting.
1 Attachment(s)
Re: [HELP] Error .bat v62
Quote:
Originally Posted by
chunkarama
In MySQL columns are sorted like VARCHAR(47), or INT(11), and etc. So, check "owner" in your MySQL and change the number in parentheses to a larger number. I suggest int(11), so it won't go over your limit. You right-click on your table, click Edit Table, and find "owner" to look at the column's setting.
IT is already set as int 11. :(::(:
Re: [HELP] Error .bat v62
What id value are you even using?
Re: [HELP] Error .bat v62
Quote:
Originally Posted by
sunnyboy
What id value are you even using?
int ( 11)
-----
Ja I tried bigint and Other
Re: [HELP] Error .bat v62
That still doesn't answer what I asked, what id value are you using? What value can you possibly be using that it's trying to save in a column that's not large enough for it?
Re: [HELP] Error .bat v62
Quote:
Originally Posted by
GabrielSin
int ( 11)
-----
Ja I tried bigint and Other
He means what what did you put in "ownerid" on your SQL. 2000? 10? 999999999? OwnerID shouldn't be over 2.147b. Also, if ownerid in SQL is int(11), and you're loading it as short(max of 32766), or even a byte (max of 255), you'll probably also get an error.