Hi there,
I have a special problem here. We have a table defined as
create table TAB_FILINH
(
FILINF_ID NUMBER not null,
REIHENFOLGE NUMBER(6) not null,
ZEILE RAW(255)
)
We store binary files in this table. In order to retrieve these files we have to select on or more rows out it and concat this rows to one binray string which is then stored in file system.
Perhpas I am missing something but I found now way to retrieve data out of a raw column. Do you have a hint for me ?
Thanks in advance.
Ernst Leber
I have a special problem here. We have a table defined as
create table TAB_FILINH
(
FILINF_ID NUMBER not null,
REIHENFOLGE NUMBER(6) not null,
ZEILE RAW(255)
)
We store binary files in this table. In order to retrieve these files we have to select on or more rows out it and concat this rows to one binray string which is then stored in file system.
Perhpas I am missing something but I found now way to retrieve data out of a raw column. Do you have a hint for me ?
Thanks in advance.
Ernst Leber