Ok, I've a bit of code that runs and feeds data from an xml file into a database table. In the process of doing that, I run a stored proc that will delete old data fed in on previous runs... but the data is not being deleted...
I know it is not the sproc itself, because I can run that via the query analyzer and records are deleted.
I know the code (posted below) is firing because I get "success" in my gErrorMsg that I am setting.
Is there something stupid I am not seeing, like I'm not executing the sproc, or something?

Private Function dropLSItems(ByVal fSellerId As Integer) As Boolean
Dim sqlConn2 As New SqlConnection(System.Configuration.ConfigurationManager.ConnectionStrings("constring").ToString())
Dim cmd2 As SqlCommand = sqlConn2.CreateCommand
cmd2.CommandType = CommandType.StoredProcedure
cmd2.CommandText = "uspDeleteLsItems_BySellerId"
cmd2.Parameters.AddWithValue("@SellerId", fSellerId)
Using (sqlConn2)
Try
sqlConn2.Open()
cmd2.ExecuteNonQuery()
gErrorMsg = gErrorMsg & vbCrLf & "<br>dropLSItems sucess: [sellerid:" & gSellerId & "] " & vbCrLf & "<br>last sql:uspDeleteLsItems_BySellerId"
Return True
Catch ex As Exception
gErrorMsg = gErrorMsg & vbCrLf & "<br>dropLSItems fail: [sellerid:" & gSellerId & "] " & ex.Message & vbCrLf & "<br>last sql:uspDeleteLsItems_BySellerId"
HttpContext.Current.Response.Write("dropLSItems: " & ex.Message & "<br>")
Return False
End Try
End Using
End Function