I have a large Text File which I want to load, line-by-line into a Firebird SUB_TYPE 1 BLOB.
The following should work, but some of the lines may not be relevant and some of the lines will be blank.
SQLQuery1.SQL.Text:= 'insert into ODTABLE (Content) values (:Content)';
SQLQuery1.ParamByName('Content').LoadFromFile(TextFileName, ftBlob);
Also, how do I extract the Content once it is loaded into the Database?