This is what I did.
- Create a table with character binary field (6 char)
- index on the field
- cTxt0 = CHR(0)+CHR(0)+CHR(0)+CHR(3)+CHR(5)+CHR(8)
- cTxt1 = CHR(1)+CHR(0)+CHR(0)+CHR(3)+CHR(5)+CHR(8)
- insert into "table" values (cTxt0)
- insert into "table" values (cTxt1)
- ?seek(cTxt0), recno() && result: .T. , 1
- ?seek(cTxt1), recno() && result: .T. , 2
It works correctly
-- AirCon --