I have this question about inserting photos into a database.
Currently, I have chosen to create a Text [VARCHAR] type field in a table to insert the link of the Image file stored on my hard disk in a folder provided for this purpose. It works very well. The folder of these images takes up some disk space.
I also know that I could have chosen to simply copy and paste the image file directly into the DB in an Image type field. The downside is that the DB takes up much more disk space.
My question is: is it possible to simply refer to an internet link corresponding to the image I want to use without having to import it into the DB or download it to a hard disk? To summarize, make the display of the image dynamic so that the DB knowing the reference automatically displays the referenced image in a field provided for this purpose when a record of a form is displayed. The result would be that there is no longer any need to download an image and space is freed up, even if it’s not a lot.