Subject: | First column skipped after select |
I want to use Net-MySQL to connect to a MySQL v4.1 database to extract
sets of data.
However in the most basic query, the results are wrong. The first column
is skipped and the last column is not printable.
I think the problem is in "_get_column_name". After extracting the
column names correctly, the position is unilaterally incremented by 9.
However in the data I'm receiving from my MySQL database, these 9 bytes
skip the first column of data.
The skipped bytes are
FE 7A 00 00 13 03 33 35 39
The first column value is "359".
If I adjust the offset to 5 the first record can be recovered correctly.
7A appears to be the size of the whole data segment.