我没这么调用过存储过程,我都是用SqlCommend调用的
Dim conn As New ADO.Class1 '这个是自定义的一个类
conn.CreateDataTableBySQL '这个是引用这个类里的那个过程
execute UpdateFanxiu '这个表示使用存储过程
爱上思考,爱上编程,爱上.net!
下面这个sql语句是我根据id重新做的一次查询.然后给textbox1.text等框赋值.这个sql语句并不是存储过程!
sqlstr = "select * from 返修信息 where 编号 = '" & Request.QueryString("id") & "'"
TextBox1.Text = conn.CreateDataTableBySQL(sqlstr).Rows(0).Item(0).ToString
TextBox2.Text = conn.CreateDataTableBySQL(sqlstr).Rows(0).Item(1).ToString
DropDownList1.Items(DropDownList1.SelectedIndex).Text = conn.CreateDataTableBySQL(sqlstr).Rows(0).Item(2).ToString
是吗?sqlcommend默认调用的是你写的sql语句,而不是存储过程,需要加这样一个参数,才可以的,你加了是吧
当然,没加参数肯定会有错误啊!
下面的加的就是动态的参数,用户修改后的信息!
conn.CreateDataTableBySQL("execute UpdateFanxiu '" & TextBox1.Text & "','" & TextBox2.Text & "'," & _
"'" & DropDownList1.SelectedItem.Text & "','" & TextBox3.Text & "','" & DropDownList2.SelectedItem.Text & "', " & _
"'" & Calendar1.Text & "','" & Calendar2.Text & "', " & _
"'" & TextBox4.Text & "','" & TextBox5.Text & "','" & TextBox6.Text & "', " & _
"'" & TextBox7.Text & "'")