I want to add a record to a table (through a sql stmt/script) and one of the fields is a blob field. I want to put text in the blob field that has multiple lines. How do I break the lines?
E.g. if only one line, my insert would look like:
INSERT INTO TABLE1(ID, BLOBFIELD)
VALUES (7,F_Str_Blob('This is line 1'))
Instead of:
This is line 1
being in the blob field, I want
This is line 1
This is line 2
I'm thinking I need to do something like:
INSERT INTO TABLE1(ID, BLOBFIELD)
VALUES (7,F_Str_Blob('This is line 1'+??+'This is line 2'))
but I don't know what to replace the ?? with.
E.g. if only one line, my insert would look like:
INSERT INTO TABLE1(ID, BLOBFIELD)
VALUES (7,F_Str_Blob('This is line 1'))
Instead of:
This is line 1
being in the blob field, I want
This is line 1
This is line 2
I'm thinking I need to do something like:
INSERT INTO TABLE1(ID, BLOBFIELD)
VALUES (7,F_Str_Blob('This is line 1'+??+'This is line 2'))
but I don't know what to replace the ?? with.