Subject | Help me for BLOB Append with any string |
---|---|
Author | golf13f |
Post date | 2007-06-19T01:43:22Z |
How I can append string to my BLOB field?
Such as
declare variable myblob blob sub_type 1 segment size 80;
.....
.....
myblob = myblob || 'sssssss';
myblob = myblob || 'yyyyyyy';
.....
.....
I want to see the output of myblob is 'sssssssyyyyyyy'
Such as
declare variable myblob blob sub_type 1 segment size 80;
.....
.....
myblob = myblob || 'sssssss';
myblob = myblob || 'yyyyyyy';
.....
.....
I want to see the output of myblob is 'sssssssyyyyyyy'