Problem:
When attempting to connect to MySql v4.0.21 I get a "Error #2030: End of
file was encountered."
Solution:
The problem is caused by ServerInformation.as Line 75. MySql v4.0 does not
send "rest of scramble_buff" packets as does 4.1 and up. There needs to be
a check of available bytes before issue the readString function.
if( packet.bytesAvailable > 0 )
{
seed += packet.readString();
}
Original issue reported on code.google.com by gurufact...@gmail.com on 4 Sep 2007 at 7:43
Original issue reported on code.google.com by
gurufact...@gmail.com
on 4 Sep 2007 at 7:43