I have created a new SQL Server local database with a table called drink.
I use Microsoft Visual Studio 2008.
Inside the table I defined the following columns:
id [int], kind [varchar], year [datatime], image [image]
I would like to insert images into the image column but I don't know how to do.
I need this column, because I want to display all data in DataGridView using VB.NET
Thanks for help!
imagedata type will be removed in a future version of SQL Server. Avoid using this data types in new development work, and plan to modify applications that currently use it. Usevarbinary(max)instead. See details here