lecosson / assql

Automatically exported from code.google.com/p/assql
0 stars 0 forks source link

Hankshake Fails when using MySQL version 4.0.21 #5

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago
Fixed in Beta 2

Original comment by macl...@gmail.com on 10 Mar 2008 at 10:33