vote up 0 vote down star

Why my set of codes didn't update in DataSet? Then it goes to Error. Please anyone check this code and point me out where I am missing. Thanks in advance!

Private Sub btnUpdate_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnUpdate.Click

    Dim conxMain As New SqlConnection("Data Source=SERVER;Initial Catalog=DBTest;Persist Security Info=True;User ID=username;Password=pwds")

    Dim dadPurchaseInfo As New SqlDataAdapter
    Dim dsPurchaseInfo As New DataSet1
    Try
        Dim dRow As DataRow

        conxMain.Open()

        Dim cmdSelectCommand As SqlCommand = New SqlCommand("SELECT * FROM Stock", conxMain)
        cmdSelectCommand.CommandTimeout = 30

        dadPurchaseInfo.SelectCommand = cmdSelectCommand
        Dim builder As SqlCommandBuilder = New SqlCommandBuilder(dadPurchaseInfo)

        dadPurchaseInfo.Fill(dsPurchaseInfo, "Stock")


        For Each dRow In dsPurchaseInfo.Tables("Stock").Rows
            If CInt(dRow.Item("StockID").ToString()) = 2 Then
                dRow.Item("StockCode") = "Re-Fashion[G]"
            End If

        Next
        dadPurchaseInfo.Update(dsPurchaseInfo, "Stock")

    Catch ex As Exception
        MsgBox("Error : ")
    Finally
        If dadPurchaseInfo IsNot Nothing Then
            dadPurchaseInfo.Dispose()
        End If

        If dsPurchaseInfo IsNot Nothing Then
            dsPurchaseInfo.Dispose()
        End If

        If conxMain IsNot Nothing Then
            conxMain.Close()
            conxMain.Dispose()
        End If
    End Try
End Sub
flag

73% accept rate
Can you post the exception message thrown? And which line of the code is it thrown from? – o.k.w Nov 8 at 6:48
Hi. o. k. w, Here is exception message I got -------------------- InvalidOpeartionException was caught Dynamic SQL generation for the UpdateCommand is not supported against a SelectCommand that does not return any key column information. ------------ – RedsDevils Nov 8 at 6:51
@RedsDevils: Does your "stock" table has a primary key column? – o.k.w Nov 8 at 6:59
nope! I used StockID as primary key but I didn't define at Table Structre. – RedsDevils Nov 8 at 7:07
@RedsDevils: It's recommended you set that column as primary key, but that's beside the point. I'm just guessing the query constructor is not able to generate an update statement for a table which doesn't have an identifier. – o.k.w Nov 8 at 7:41
show 1 more comment

3 Answers

vote up 1 vote down check

Does your condition in the loop get executed (set a break point!)? Where is the error thrown? What error?

Also, why does it use ToString at all? This seems redundant.

If CInt(dRow.Item("StockID")) = 2 Then

Should be enough.

Finally, you’re performing redundant cleanup:

If conxMain IsNot Nothing Then
    conxMain.Close()
    conxMain.Dispose()
End If

Dispose implies Close – no need to perform both operations:

Close and Dispose are functionally equivalent.

[Source: MSDN]

link|flag
Thanks Konard Rudolph! I got it based on your error correction to my program! :) Thanks a lot. It takes me the whole day to solve! Thanks you very much! – RedsDevils Nov 8 at 10:48
vote up 1 vote down

Does your dataAdapter has update command ?

(it looks like it doesn't - so it doesn't know what do to with update....)

Here is an Update Command example:(for an employee table with 3 columns - as listed below:

UPDATE [Employee] SET [name] = @name, [manager] = @manager WHERE (([id] = @Original_id) AND ((@IsNull_name = 1 AND [name] IS NULL) OR ([name] = @Original_name)) AND ((@IsNull_manager = 1 AND [manager] IS NULL) OR ([manager] = @Original_manager)));

SELECT id, name, manager FROM Employee WHERE (id = @id)

You can see it is a general update that can handle changes in any field.

link|flag
How about this part? For Each dRow In dsPurchaseInfo.Tables("Stock").Rows If CInt(dRow.Item("StockID").ToString()) = 2 Then dRow.Item("StockCode") = "Re-Fashion[G]" End If Next It says to update dataAdapter, isn't it? – RedsDevils Nov 8 at 6:56
You gave the adapter a select command (check your code) you need to give it an update command. your code changes the data - but the adapter need to know what command to run to update it. you can use visual studio wizard to generate an update command, or write it yoursefl. – Dani Nov 8 at 7:24
dadPurchaseInfo.UpdateCommand = ..... – Dani Nov 8 at 7:25
Dim cmdUpdateCommand As SqlCommand = New SqlCommand("UPDATE Stock SET StockCode='Re-Fashion(H)' WHERE StockID=2", conxMain) cmdUpdateCommand.CommandTimeout = 30 dadPurchaseInfo.UpdateCommand = cmdUpdateCommand Dim cbUpdate As SqlCommandBuilder = New SqlCommandBuilder(dadPurchaseInfo) dadPurchaseInfo.Update(dsPurchaseInfo, "Stock") ------------- I write like above and run but it doesn't work. – RedsDevils Nov 8 at 7:50
Can you show me the code snippet that call after I created Update Query in Visual Studio? – RedsDevils Nov 8 at 8:15
show 1 more comment
vote up 0 vote down

I got it from the error correction of my program by Konard Rudolph!

Private Sub btnUpdate_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnUpdate.Click

    Dim conxMain As New SqlConnection("Data Source=SERVER;Initial Catalog=DBTest;Persist Security Info=True;User ID=username;Password=pwds")

    Dim dadPurchaseInfo As New SqlDataAdapter
    Dim dsPurchaseInfo As New DataSet1
       Try
            Dim dRow As DataRow

            conxMain.Open()

            dadPurchaseInfo.SelectCommand = New SqlCommand("SELECT * FROM Stock", conxMain)
            Dim builder As SqlCommandBuilder = New SqlCommandBuilder(dadPurchaseInfo)


            dadPurchaseInfo.Fill(dsPurchaseInfo, "Stock")

            For Each dRow In dsPurchaseInfo.Tables("Stock").Rows
                If CInt(dRow.Item("StockID")) = 2 Then
                    dRow.Item("StockCode") = "Re-Fashion(H)"
                End If

            Next
            dadPurchaseInfo.Update(dsPurchaseInfo, "Stock")
        Catch ex As Exception
            MsgBox("Error : " & vbCrLf & ex.Message)
        Finally
            If dadPurchaseInfo IsNot Nothing Then
                dadPurchaseInfo.Dispose()
            End If

            If dsPurchaseInfo IsNot Nothing Then
                dsPurchaseInfo.Dispose()
            End If

            If conxMain IsNot Nothing Then
                conxMain.Dispose()
            End If
        End Try
  End Sub

The above set of code work to update with DataSet! Thanks to stackoverflow community and who answered my question.

Here is ref:

p.s: Like o.k.w said : The Table must have primary key. Thanks o.k.w!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.