Storing and retrieving files to/from sql fields

  • Thread starter Thread starter Alejandro Kwiatkowski
  • Start date Start date
A

Alejandro Kwiatkowski

How I can do to store and retrieve files to/from a fields in a SQL Server
table using .NET 2.0

Thanks you in advance

Alejandro
 
You have to use image datatype for the column where you want to store the
files. And use byte datatype for reading and writing to the column with
ado.net. The method for executing the query is similar to other datatypes.
 
Back
Top