I am developing a system. I usually add data in the database by coding it using visual studio 2013, for example:
Select * from tbl_login where loginID = '" & TextBox1.Text & "'
It works with strings, but not with an image. I don't know what should I use to save an image from a PictureBox.
Also, what is better? Using IMAGE or VARBINARY(MAX) as datatype?
Thanks in advance!