M mecom Member Aug 21, 2000 #1 Hello ... i have a table with a field: BITMAP RAW(1024) not null; a Select bitmap from table .... returns a conversion to HEX-String ... :-( Any Idea how to acces the data without convering it back to binary Data ? Thx for Help Dirk
Hello ... i have a table with a field: BITMAP RAW(1024) not null; a Select bitmap from table .... returns a conversion to HEX-String ... :-( Any Idea how to acces the data without convering it back to binary Data ? Thx for Help Dirk
Marco Kalter Administrator Staff member Aug 24, 2000 #1 There is currently no other way to access the raw data than as a hexadecimal string. You need to convert between binary and hexadecimal string format. ------------------ Marco Kalter Allround Automations
There is currently no other way to access the raw data than as a hexadecimal string. You need to convert between binary and hexadecimal string format. ------------------ Marco Kalter Allround Automations
M mecom Member Aug 25, 2000 #1 Thank you Marco. I did it. It works. Maby you will include such a funktion in a later version.