How to acces RAW-Fields

mecom

Member
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
 
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
 
Back
Top