I'm currently working in Microsoft Visual Studio and I am doing a project for school where I have to make an app that lets you book seats at a cinema and see the description of the movie you have selected as well as leave/read a review.
In my app I have decided that I want to include pictures (basically a poster for each of the movies); I have made my Movies
table and have idf
as my primary key. I have added a poster
column in my table definition and I have set its type to image
.
My question is, how do I assign a certain image to a movie, so as to have access to it and to be able to display it later using a query of some sort?