I have a Delphi application which displays an image using a TImage.
The location of the image is stored in a database and retrieved on load and set directly using co
No, there isn't. You can store it yourself, though.
var
ImageFileName: string;
begin
ImageFileName := Query1.FieldByName('image').AsString;
Image1.Picture.LoadFromFile(ImageFileName);
end;
Declare the ImageFileName variable at a place where it will be visible everywhere you need access to the file name.