Hi,
I need to store binary files to the SQL Server Database. What's the better Data Type between Varbinary and Image to ?
From stackoverflow
Yoann. B
-
Use varbinary as image is deprecated.
http://msdn.microsoft.com/en-us/library/ms188362.aspx
Christopher Edwards : http://msdn.microsoft.com/en-us/library/ms187993.aspx is a better link.From cmsjr -
varbinary(max) is the way to go (introduced in SQL server 2005)
From SQLMenace -
There is also the rather spiffy
FileStream
, introduced in SQL Server 2008.From Andrew Rollings
0 comments:
Post a Comment