473,387 Members | 1,760 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Upload Images in SQL Server database

I am trying to work on uploading images in SQL Server Database.Therez no error in the code though I encountered this while uploading the image @ runtime .....

Object reference not set to an instance of an object.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.


Following is the code I had written:

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim FileName As String
Dim FileType As String
Dim namePosition As Int16
Dim stream As IO.Stream

stream = File1.PostedFile.InputStream
Dim uploadPostedFile(stream.Length) As Byte
stream.Read(uploadPostedFile, 0, stream.Length)

namePosition = File1.PostedFile.FileName.LastIndexOf("\") + 1
FileName = File1.PostedFile.FileName.Substring(namePosition)
FileType = File1.PostedFile.ContentType

Dim con As New SqlClient.SqlConnection("Server=sys2; initial catalog=master integrated security=ssPI")
Dim sqlstr As String
sqlstr = "INSERT INTO ImageFile(Description,DocumentFileName,DocumentFil e,DoumentFileType) Values(@Description,@DocumentFileName,@DocumentFil e,@DoumentFileType)"
Dim cmd As New SqlClient.SqlCommand(sqlstr, con)

cmd.Parameters.Add("@description", SqlDbType.NVarChar, 100).Value = TextBox1.Text
cmd.Parameters.Add("@DocumentFileName", SqlDbType.NVarChar, 50).Value = FileName
cmd.Parameters.Add("@DocumentFile", SqlDbType.Image, uploadPostedFile.Length).Value = uploadPostedFile
cmd.Parameters.Add("@DoumentFileType", SqlDbType.NVarChar, 50).Value = FileType
con.Open()

End Sub

Please help me in understand what cud bethe basic problem.

Appreciate your kind help in advance.

Regards,

Deepa
Dec 22 '06 #1
1 2128
kenobewan
4,871 Expert 4TB
Here is an article that may help:
Storing and Retrieving Images from SQL Server using Microsoft .NET

I personally never use this approach. I prefer to save the file to a folder and use the location in the database to retrieve the image.

Hope that this helps.
Dec 23 '06 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

3
by: dave | last post by:
Hello there, I am at my wit's end ! I have used the following script succesfully to upload an image to my web space. But what I really want to be able to do is to update an existing record in a...
4
by: NohaKhalifa | last post by:
Dear All; I'm developing a web site and i need to make adminisration for this site it's a site for Real Estates . But I don't need the administration to be online .. I want them to fill data...
5
by: bob garbados | last post by:
I am trying to create a database-driven photo gallery for a friend with an admin form to upload images... I can upload a file to the web server, but I want to store the image in a database and I...
1
by: BW | last post by:
I am creating an upload/download function for an extranet site. Files will be uploaded to directory based upon the users login and associated project. The function works as long as I use "c:\Temp"...
3
by: Pitcairnia | last post by:
The basic purpose of the site is for authenticated users to post event listings, which often include photographs. The user is faced with a page where they can insert all of the information about...
13
by: Neo Geshel | last post by:
I have examined about 80+ different upload scripts on the 'net, both in VB and C#, and none seem to do what I need them to do. Perhaps someone here can point me somewhere that Google hasn't...
0
by: SEMIH DEMIR | last post by:
Sitelerden birinde verilen yabancı kaynakli bir scriptti duzenledim yanlız birseyin içinden bir turlu cıkamadım işin aslı ilk defa persistin upload componentini kullanacam yanlız suanki haliyle...
9
by: Wayne Smith | last post by:
I've come up against a major headache that I can't seem to find a solution for but I'm sure there must be a workaround and I would really be grateful of any help. I'm currently building a web...
7
by: dragiton | last post by:
SA Upload SQL Database variable types (image upload and storage) I am having trouble with the SA Upload utility. The following code used to work correctly. However, I lost my database and had to...
8
johngault
by: johngault | last post by:
I've been working with this PHP page for several days now and I'm stumped. The page is supposed to allow the user to upload up to six images for their profile. When the user adds an image it (the...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.