I am trying to learn how to use Images stored in the server using a Database
In server my image is in the location /images/image.jpg
I have created a database called test456
I have a table named MyTable
in the database test456
CREATE TABLE MyTable
(
_id INT(10) AUTO_INCREMENT,
Image VARCHAR(50)
);
I read a post that involved
Store the image location in the filesystem
, than store it directly in the DB
.
- What is meant by it?
- How to achieve this?