TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
gavriel ankri
NA
39
48.5k
How to store image/any files into a SQL database
Dec 24 2011 2:52 AM
Hello
I am trying to upload files into a SQL database. the transfer is moving to the selected folder, but it doesnt appear in my Sql table. I am using VARBINARY(MAX).
this is my code:
public void Uploadfile(RemoteFileInfo response)
{
FileStream targetStream = null; //write -> to server
Stream sourceStream = response.FileByteStream; // from the client
string filePath = Path.Combine(serverFilesFolder, response.FileName);
byte[] buffer;
using (targetStream = new FileStream(
filePath, FileMode.Create, FileAccess.Write))
{
//Creating the uploaded file:
const int bufferLength = 65000;
buffer = new byte[bufferLength];
int count;
//Loop: Reading --> Writing
while ((count = sourceStream.Read(buffer, 0, bufferLength)) > 0)
{
targetStream.Write(buffer, 0, count);
Console.WriteLine("Writing {0:n0} Bytes", count); //for my tracing...
}
// Store in Database
context.AddToFileTableNew(new FileTableNew
{
FileName = response.FileName,
Size = response.Length,
UserName = response.UserName,
FileData = buffer
});
context.SaveChanges();
targetStream.Close();
sourceStream.Close();
Reply
Answers (
2
)
Find & Replace in MySQL
_Unlock_notify() using C# in SQLite