I'm using the following code to load BMP images to Paradox Database.
This same code is not working at all under MSSQL when I have the
datatype as images.
If (OpenDialog1.Execute) then
begin
table2.edit;
{user pressed OK! }
DBImage2.Picture.LoadFromFile(OpenDialog1.FileName);
table2.post;
end;
I'm suspecting that MSSQL requires to actually store the entire
graphic data into the DB. :-( I'm not sure... Anyways, if you know
what I'm missing or doing wrong please advice!
Thank you very much for your help!