本文介绍了这行的语法错误是什么的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
Dim str1 As String = " Insert into ticket details values('" & Text1.Text & "'," & Val(Text7.Text) & "," & Val(Text2.Text) & "," & Val(Text3.Text) & ",'" & Text4.Text & "'," & Val(Text5.Text) & "," & Val(Text6.Text) & ")"
这行的语法错误是什么?
what is the syntax error in this line
推荐答案
INSERT INTO mtTable (myColumn, myOtherColumn), VALUES (@MC, @MOC)
试试这个:
Try this:
Dim str1 As String = "INSERT INTO [ticket details] (myColumn, myOtherColumn) VALUES (@MC, @MOC)"
SqlCommand com = new SQLCOmmand(str1, con)
com.Parameters.AddWithValue("@MC", Text1.Text)
com.Parameters.AddWithValue("@MOC", Val(Text7.Text))
这篇关于这行的语法错误是什么的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!