[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.9

Value of type 'Integer' cannot be converted to 'System.Data.SqlClient.SqlDataAdapter' for ExecuteNonQuery on insert SQL

Asked by bolt81 in Microsoft Visual Basic.Net

Tags: microsoft, asp.net, asp.net

hi

the problem i am having is the error below is reported on the ExecuteNonQuery on compilation.
BC30311: Value of type 'Integer' cannot be converted to 'System.Data.SqlClient.SqlDataAdapter'

am i using the wrong datatype to hold the ExecuteNonQuery command ?
i have included my code below.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs)
        Dim requester As SqlDataReader
        Dim connectionstring As String = ConfigurationManager.ConnectionStrings("MMS V4 Leeds current").ConnectionString
        Dim conn As New SqlConnection(connectionstring)
        Dim comm As New SqlCommand("INSERT INTO WebSysSurvey (WOID, CreatedDate, RequiredDate, Status, WhoRequest, Notes) VALUES (@WOID, @CreatedDate, @RequiredDate, @Status, @WhoRequest, @Notes)", conn)
        'add data vairables
        comm.Parameters.Add("@WOID", Data.SqlDbType.BigInt)
        comm.Parameters("@WOID").Value = System.Int32.Parse(Request.QueryString("WOID"))
        comm.Parameters.Add("@CreatedDate", Data.SqlDbType.Date)
        comm.Parameters("@CreatedDate").Value = Today()
        comm.Parameters.Add("@RequiredDate", Data.SqlDbType.Date)
        comm.Parameters("@RequiredDate").Value = DatePicker1.DateValue
        comm.Parameters.Add("@Status", Data.SqlDbType.NVarChar)
        comm.Parameters("@Status").Value = "Unallocated"
        comm.Parameters.Add("@WhoRequest", Data.SqlDbType.NVarChar)
        comm.Parameters("@WhoRequest").Value = Request.ServerVariables("LOGON_USER")
        comm.Parameters.Add("@Notes", Data.SqlDbType.Text)
        comm.Parameters("@Notes").Value = Notes.Text
        Try
            conn.Open()
            requester = comm.ExecuteNonQuery
            
        Catch ex As Exception
 
        Finally
            conn.Close()
            
        End Try
    End Sub
[+][-]04/15/08 08:50 AM, ID: 21359770Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zone: Microsoft Visual Basic.Net
Tags: microsoft, asp.net, asp.net
Sign Up Now!
Solution Provided By: PaulHews
Participating Experts: 1
Solution Grade: A
 
 
Loading Advertisement...
20091118-EE-VQP-93 / EE_QW_2_20070628