Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Database & SysAdmin
  3. Database
  4. Save Image in SQL Database

Save Image in SQL Database

Scheduled Pinned Locked Moved Database
databasehelp
43 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • W Wendelius

    This is confusing... I thought that now the delete operation would have deleted 1 row. I think I must get some sleep but in the mean time if you could test this variation with one picture in database (this should delete ALL pictures):

    commImage = New Data.SqlClient.SqlCommand("DELETE FROM Images)", conImage)
    ...
    If (dsImage.Images.Rows.Count > 0) Then
    MsgBox("Delete not done, rows in datatable: " & CStr(dsImage.Images.Rows.Count), MsgBoxStyle.Information)
    End If

    I'll get back to this sometime tomorrow afternoon so don't hurry with this. If I'm reading the clock correctly it's past 10pm at your timezone so you could use some rest too. :) Mika

    B Offline
    B Offline
    bapu2889
    wrote on last edited by
    #27

    Hello again yes you are right it's 10.30 pm now so better to rest and get back to work tomorrow but thank you very much for your help take care :)

    B 1 Reply Last reply
    0
    • B bapu2889

      Hello again yes you are right it's 10.30 pm now so better to rest and get back to work tomorrow but thank you very much for your help take care :)

      B Offline
      B Offline
      bapu2889
      wrote on last edited by
      #28

      hello again yes i have tried new quary but still it's not working waiting for your kind rep.

      W 1 Reply Last reply
      0
      • B bapu2889

        hello again yes i have tried new quary but still it's not working waiting for your kind rep.

        W Offline
        W Offline
        Wendelius
        wrote on last edited by
        #29

        Hi again, What was the output from these (rowcount)?

        MsgBox("Original image count in dataset: " & CStr(imageCount))
        ...
        If (dsImage.Images.Rows.Count > 0) Then
        MsgBox("Delete not done, rows in datatable: " & CStr(dsImage.Images.Rows.Count), MsgBoxStyle.Information)
        End If

        B 2 Replies Last reply
        0
        • W Wendelius

          Hi again, What was the output from these (rowcount)?

          MsgBox("Original image count in dataset: " & CStr(imageCount))
          ...
          If (dsImage.Images.Rows.Count > 0) Then
          MsgBox("Delete not done, rows in datatable: " & CStr(dsImage.Images.Rows.Count), MsgBoxStyle.Information)
          End If

          B Offline
          B Offline
          bapu2889
          wrote on last edited by
          #30

          hello sir how are you in messagebox 1st original image count = 2 2nd msgbox delete not done, rows in datatable = 2 and when i click ok it shows SqlException was unhandled "Incorrect syntax near '*' wanting for your kind rep.

          W 1 Reply Last reply
          0
          • B bapu2889

            hello sir how are you in messagebox 1st original image count = 2 2nd msgbox delete not done, rows in datatable = 2 and when i click ok it shows SqlException was unhandled "Incorrect syntax near '*' wanting for your kind rep.

            W Offline
            W Offline
            Wendelius
            wrote on last edited by
            #31

            Where is that SqlException coming from? After the "Delete not done..." message box there should be no code to execute (only End If). Another thing, the dataset is defined in the project, am I correct? Could you post the part that selects the images or do you create the SELECT statement?

            B 1 Reply Last reply
            0
            • W Wendelius

              Where is that SqlException coming from? After the "Delete not done..." message box there should be no code to execute (only End If). Another thing, the dataset is defined in the project, am I correct? Could you post the part that selects the images or do you create the SELECT statement?

              B Offline
              B Offline
              bapu2889
              wrote on last edited by
              #32

              hello again the code which exacute is as bellow

              Dim imageCount As Integer = dsImage.Images.Rows.Count
              MsgBox("Original image count in dataset: " & CStr(imageCount))
              conImage = GetDBConnection()
              commImage = New Data.SqlClient.SqlCommand("DELETE * FROM Images)", conImage)
              If (dsImage.Images.Rows.Count > 0) Then
              MsgBox("Delete not done, rows in datatable: " & CStr(dsImage.Images.Rows.Count), _
              MsgBoxStyle.Information)

                  End If
              

              and the code where error shows

              If commImage.ExecuteNonQuery() <> 1 Then (this is the line)
              MsgBox("Delete failed", MsgBoxStyle.Information)
              End If

              this is the part to get image

              Private Sub GetImage()
              Dim fs As FileStream = New FileStream(mImageFilePath.ToString(), FileMode.Open)
              Dim img As Byte() = New Byte(fs.Length) {}
              fs.Read(img, 0, fs.Length)
              fs.Close()
              mImageFile = Image.FromFile(mImageFilePath.ToString())
              Dim imgHeight As Integer = picImage.Height 'mImageFile.Height
              Dim imgWidth As Integer = picImage.Width 'mImageFile.Width
              Dim imgLength As Integer = mImageFile.PropertyItems.Length
              Dim imgType As String = Path.GetExtension(mImageFilePath)
              mImageFile = Nothing
              ' image content
              Dim pic As SqlParameter = New SqlParameter("@pic", SqlDbType.Image)
              pic.Value = img
              commImage.Parameters.Add(pic)

                  ' title
                  Dim title As SqlParameter = New SqlParameter("@title", System.Data.SqlDbType.VarChar, 50)
                  title.Value = txtTitle.Text.ToString()
                  commImage.Parameters.Add(title)
              
                  ' type
                  Dim itype As SqlParameter = New SqlParameter("@itype", System.Data.SqlDbType.Char, 4)
                  itype.Value = imgType.ToString()
                  commImage.Parameters.Add(itype)
              
                  ' height
                  Dim iheight As SqlParameter = New SqlParameter("@iheight", System.Data.SqlDbType.Int)
                  iheight.Value = imgHeight
                  commImage.Parameters.Add(iheight)
              
                  ' width
                  Dim iwidth As SqlParameter = New SqlParameter("@iwidth", System.Data.SqlDbType.Int)
                  iwidth.Value = imgWidth
                  commImage.Parameters.Add(iwidth)
              End Sub
              

              this is select statment

              Private Sub btnSave_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSave.Click
              btnSave.Enabled = False
              'get sql connection
              Dim ImageAdd

              W 1 Reply Last reply
              0
              • B bapu2889

                hello again the code which exacute is as bellow

                Dim imageCount As Integer = dsImage.Images.Rows.Count
                MsgBox("Original image count in dataset: " & CStr(imageCount))
                conImage = GetDBConnection()
                commImage = New Data.SqlClient.SqlCommand("DELETE * FROM Images)", conImage)
                If (dsImage.Images.Rows.Count > 0) Then
                MsgBox("Delete not done, rows in datatable: " & CStr(dsImage.Images.Rows.Count), _
                MsgBoxStyle.Information)

                    End If
                

                and the code where error shows

                If commImage.ExecuteNonQuery() <> 1 Then (this is the line)
                MsgBox("Delete failed", MsgBoxStyle.Information)
                End If

                this is the part to get image

                Private Sub GetImage()
                Dim fs As FileStream = New FileStream(mImageFilePath.ToString(), FileMode.Open)
                Dim img As Byte() = New Byte(fs.Length) {}
                fs.Read(img, 0, fs.Length)
                fs.Close()
                mImageFile = Image.FromFile(mImageFilePath.ToString())
                Dim imgHeight As Integer = picImage.Height 'mImageFile.Height
                Dim imgWidth As Integer = picImage.Width 'mImageFile.Width
                Dim imgLength As Integer = mImageFile.PropertyItems.Length
                Dim imgType As String = Path.GetExtension(mImageFilePath)
                mImageFile = Nothing
                ' image content
                Dim pic As SqlParameter = New SqlParameter("@pic", SqlDbType.Image)
                pic.Value = img
                commImage.Parameters.Add(pic)

                    ' title
                    Dim title As SqlParameter = New SqlParameter("@title", System.Data.SqlDbType.VarChar, 50)
                    title.Value = txtTitle.Text.ToString()
                    commImage.Parameters.Add(title)
                
                    ' type
                    Dim itype As SqlParameter = New SqlParameter("@itype", System.Data.SqlDbType.Char, 4)
                    itype.Value = imgType.ToString()
                    commImage.Parameters.Add(itype)
                
                    ' height
                    Dim iheight As SqlParameter = New SqlParameter("@iheight", System.Data.SqlDbType.Int)
                    iheight.Value = imgHeight
                    commImage.Parameters.Add(iheight)
                
                    ' width
                    Dim iwidth As SqlParameter = New SqlParameter("@iwidth", System.Data.SqlDbType.Int)
                    iwidth.Value = imgWidth
                    commImage.Parameters.Add(iwidth)
                End Sub
                

                this is select statment

                Private Sub btnSave_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSave.Click
                btnSave.Enabled = False
                'get sql connection
                Dim ImageAdd

                W Offline
                W Offline
                Wendelius
                wrote on last edited by
                #33

                Ok, First change the following commImage = New Data.SqlClient.SqlCommand("DELETE * FROM Images)", conImage) to commImage = New Data.SqlClient.SqlCommand("DELETE FROM Images)", conImage) If you could then rerun the test where you had two images, what is the output now? The deletion wasn't done, because of the syntax error in SQL statement, so we don't know if the deletion works or not

                B 1 Reply Last reply
                0
                • W Wendelius

                  Ok, First change the following commImage = New Data.SqlClient.SqlCommand("DELETE * FROM Images)", conImage) to commImage = New Data.SqlClient.SqlCommand("DELETE FROM Images)", conImage) If you could then rerun the test where you had two images, what is the output now? The deletion wasn't done, because of the syntax error in SQL statement, so we don't know if the deletion works or not

                  B Offline
                  B Offline
                  bapu2889
                  wrote on last edited by
                  #34

                  hello with 2 images in database msgbox1 original row count = 2 msgobx2 delete not done , rows in datatable = 2 and then i click second msgbox it shows sql exception on this under line code it shows this error Incorrect syntax near ')'. If commImage.ExecuteNonQuery() <> 1 Then MsgBox("Delete failed", MsgBoxStyle.Information) End If

                  W 1 Reply Last reply
                  0
                  • B bapu2889

                    hello with 2 images in database msgbox1 original row count = 2 msgobx2 delete not done , rows in datatable = 2 and then i click second msgbox it shows sql exception on this under line code it shows this error Incorrect syntax near ')'. If commImage.ExecuteNonQuery() <> 1 Then MsgBox("Delete failed", MsgBoxStyle.Information) End If

                    W Offline
                    W Offline
                    Wendelius
                    wrote on last edited by
                    #35

                    Yeah, sorry. Instead of: commImage = New Data.SqlClient.SqlCommand("DELETE FROM Images)", conImage) write commImage = New Data.SqlClient.SqlCommand("DELETE FROM Images", conImage) There was an extra parenthesis at the end of the statement... Then let's try again

                    B 1 Reply Last reply
                    0
                    • W Wendelius

                      Yeah, sorry. Instead of: commImage = New Data.SqlClient.SqlCommand("DELETE FROM Images)", conImage) write commImage = New Data.SqlClient.SqlCommand("DELETE FROM Images", conImage) There was an extra parenthesis at the end of the statement... Then let's try again

                      B Offline
                      B Offline
                      bapu2889
                      wrote on last edited by
                      #36

                      hello ok no problem MsbBox1 = original image count = 1 msgbox2 = delete not done,rows in datatable = 1 msgbox3 = delete not done, rows in datatable = 1 and exit sub and then i click again so msgbox1= original image count = 1 msgbox2 = delete not done,rows in datatable = 1 msgbox3 = delete failed msgbox4 = delete not done, rows in datatable = 1 so this is the only difference waiting for your kind rep. thanks

                      W 1 Reply Last reply
                      0
                      • B bapu2889

                        hello ok no problem MsbBox1 = original image count = 1 msgbox2 = delete not done,rows in datatable = 1 msgbox3 = delete not done, rows in datatable = 1 and exit sub and then i click again so msgbox1= original image count = 1 msgbox2 = delete not done,rows in datatable = 1 msgbox3 = delete failed msgbox4 = delete not done, rows in datatable = 1 so this is the only difference waiting for your kind rep. thanks

                        W Offline
                        W Offline
                        Wendelius
                        wrote on last edited by
                        #37

                        :confused: I am missing it... For some reason seems like Fill is fetching different data... What is the connection used for filling dsImage? Is it the same that is used in deleting Another thing. I don't think we can get much further by posting through CodeProject. Is it possible for you to send me the whole project via e-mail?

                        B 1 Reply Last reply
                        0
                        • W Wendelius

                          :confused: I am missing it... For some reason seems like Fill is fetching different data... What is the connection used for filling dsImage? Is it the same that is used in deleting Another thing. I don't think we can get much further by posting through CodeProject. Is it possible for you to send me the whole project via e-mail?

                          B Offline
                          B Offline
                          bapu2889
                          wrote on last edited by
                          #38

                          hello again yes you are right and i dont mind to email this project and with empty database but size of zip folder is 42 MB so how can i e mail you ? waiting for your rep.

                          W 1 Reply Last reply
                          0
                          • B bapu2889

                            hello again yes you are right and i dont mind to email this project and with empty database but size of zip folder is 42 MB so how can i e mail you ? waiting for your rep.

                            W Offline
                            W Offline
                            Wendelius
                            wrote on last edited by
                            #39

                            Wow, so big? If there's data in the database, could it be emptied. Pictures are not necessary. Also bin and obj folders are not necessary since they are created by compiler. Would that change the size say less than 5 MB. I think emailing can be done by pressing Email-link in a post instead of Reply. I'll send you a test message..

                            B 1 Reply Last reply
                            0
                            • W Wendelius

                              Wow, so big? If there's data in the database, could it be emptied. Pictures are not necessary. Also bin and obj folders are not necessary since they are created by compiler. Would that change the size say less than 5 MB. I think emailing can be done by pressing Email-link in a post instead of Reply. I'll send you a test message..

                              B Offline
                              B Offline
                              bapu2889
                              wrote on last edited by
                              #40

                              hello I have sent you mail as well so if remove bin then this will cut down up to 26mb but .mdf and log file for database both are 13 mb each but rest files are ok to attach with e mail

                              W 1 Reply Last reply
                              0
                              • B bapu2889

                                hello I have sent you mail as well so if remove bin then this will cut down up to 26mb but .mdf and log file for database both are 13 mb each but rest files are ok to attach with e mail

                                W Offline
                                W Offline
                                Wendelius
                                wrote on last edited by
                                #41

                                if you put the log and the mdf into zip folder is it still 26mb. They should compress quite well. The test message didn't come so I think we cannot use that. Also I don't know if there's any way to use attachments in cp email... Try to send me a little message to address mika dot wendelius at bdb dot fi

                                1 Reply Last reply
                                0
                                • W Wendelius

                                  Hi again, What was the output from these (rowcount)?

                                  MsgBox("Original image count in dataset: " & CStr(imageCount))
                                  ...
                                  If (dsImage.Images.Rows.Count > 0) Then
                                  MsgBox("Delete not done, rows in datatable: " & CStr(dsImage.Images.Rows.Count), MsgBoxStyle.Information)
                                  End If

                                  B Offline
                                  B Offline
                                  bapu2889
                                  wrote on last edited by
                                  #42

                                  Hi Mika It's done now and it's working fine so thanks for your help to solve this issue and teaching me a lot :-D :rose:

                                  W 1 Reply Last reply
                                  0
                                  • B bapu2889

                                    Hi Mika It's done now and it's working fine so thanks for your help to solve this issue and teaching me a lot :-D :rose:

                                    W Offline
                                    W Offline
                                    Wendelius
                                    wrote on last edited by
                                    #43

                                    You're welcome :)

                                    1 Reply Last reply
                                    0
                                    Reply
                                    • Reply as topic
                                    Log in to reply
                                    • Oldest to Newest
                                    • Newest to Oldest
                                    • Most Votes


                                    • Login

                                    • Don't have an account? Register

                                    • Login or register to search.
                                    • First post
                                      Last post
                                    0
                                    • Categories
                                    • Recent
                                    • Tags
                                    • Popular
                                    • World
                                    • Users
                                    • Groups