J
jayeshsorathia
There is a need in application to upload a file and store into SQL Server Database table.
You can do this very simple way.
File is stored in sql server as binary data. You need to set "varbinary" data type of the column in which you want to store file. You need to take "varbinary(MAX)" data type.
Click here to view C# Examples and VB.net Examples on this. Click Here... http://jayeshsorathia.blogspot.com/...save-file-into-sql-server-database-table.html
You can do this very simple way.
File is stored in sql server as binary data. You need to set "varbinary" data type of the column in which you want to store file. You need to take "varbinary(MAX)" data type.
Click here to view C# Examples and VB.net Examples on this. Click Here... http://jayeshsorathia.blogspot.com/...save-file-into-sql-server-database-table.html