Venkatesh
Venkatesh

Reputation: 37

Adding images In SQL Server Table

Hi i have to add a image path to a column in table. i have the image file in a local folder. how to achieve this? i dont want to add the image fully as binary , i just want to add the image path to the column. thanx in advance.

Upvotes: 0

Views: 355

Answers (1)

The_Cthulhu_Kid
The_Cthulhu_Kid

Reputation: 1859

Just save it as a VARCHAR(260) and then you can access it from whatever program you are using/writing. [edited due to marc_s' comment]

Upvotes: 2

Related Questions