I'm developing an application that intends to store the data in a SQLIte database. It's kind of a virtual city guide.
As so, I'm storing some text elements on the DB and I'd like to store the path of an image and a video stored in the device in different columns and tables of the DB.
Kind of:
_ID INTEGER PRIMARY KEY AUTOINCREMENT (id of the image)
IMAGE_PATH TEXT UNIQUE (path of the image associated with the ID)
Can anyone give some examples on how can I do this?