Link to home
Start Free TrialLog in
Avatar of Murray Brown
Murray BrownFlag for United Kingdom of Great Britain and Northern Ireland

asked on

VB.net Store a zipped file of 30MB in a SQL table

Hi

Is it possible to store a zipped VB.net Windows Forms application installation file in a SQL database?

Thanks
Avatar of Deepak Chauhan
Deepak Chauhan
Flag of India image

If you are using SQL server 2008 then you can take advantage of  FileStream data but in sql server 2005 varbinary(max) datatype.
Avatar of Murray Brown

ASKER

Hi. I am using SQL Server 2008. What column type would I use?
column datatype will be Varbinary(max)
ASKER CERTIFIED SOLUTION
Avatar of Deepak Chauhan
Deepak Chauhan
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thank you very much. Appreciate the help