It seems easy, but how to retrieve the file?
What I mean is how to retrieve the data from the blob (what I inserted) to a file?
to insert i use:
ibquery1.close;
ibquery1.sql.clear;
ibquery1.sql.add ('INSERT INTO mytable ' +
'DATA ' +
') VALUES (' +
':data ' +
');');
ibquery1.parambyname ('DATA').loadfromfile ('data.dat',ftblob);
ibquery1.open;
HOW TO RETRIEVE THE FILE THAT I INSERTED WHERE???