۰۶-خرداد-۱۳۸۸, ۱۱:۴۲:۴۳
با سلام
بنده از sql server 2000 استفاده می کنم
در vb.net 2005 این قطعه کد را نوشتم
لطفا مرا راهنمایی کنید
بنده از sql server 2000 استفاده می کنم
در vb.net 2005 این قطعه کد را نوشتم
Dim st As Integer
Dim av As Single
Dim un As Integer
Dim c As SqlCommand
Dim strSql1 As String
Dim strSql2 As String
Me.BindingContext(ds, "Table1").AddNew()
st = Val(TextBox1.Text)
strSql1 = "Insert Into Table1(" & "code, " & _
"Name, " & _
") VALUES ('" & st & "', '" & _
TextBox2.Text & "','" & _
"', True )"
c.ExecuteNonQuery()
con.Close()
MsgBox("Insert Completed .")
ds.Clear()
da.Fill(ds, "Table1")
con.Close()
End Sub
که در خط c.ExecuteNonQuery خطا می گیردDim av As Single
Dim un As Integer
Dim c As SqlCommand
Dim strSql1 As String
Dim strSql2 As String
Me.BindingContext(ds, "Table1").AddNew()
st = Val(TextBox1.Text)
strSql1 = "Insert Into Table1(" & "code, " & _
"Name, " & _
") VALUES ('" & st & "', '" & _
TextBox2.Text & "','" & _
"', True )"
c.ExecuteNonQuery()
con.Close()
MsgBox("Insert Completed .")
ds.Clear()
da.Fill(ds, "Table1")
con.Close()
End Sub
لطفا مرا راهنمایی کنید