SQLServerデータベースにデータを挿入しようとすると問題が発生します。
これが機能です
Public Sub Processsales()
Dim cust_guid As Guid = Session("guid")
Dim Iden As Guid = System.Guid.NewGuid
Dim ssql As String
ssql = "Insert into WebSite.wTranH ([WebTranHGUID],[TranType],[LOCTN]) values ([Iden],[2],[5])"
Using connection As New SqlConnection(System.Configuration.ConfigurationSettings.AppSettings("SqlConnectionString"))
Dim command As New SqlCommand(ssql, connection)
connection.Open()
command.ExecuteNonQuery()
End Using
End Sub
しかし、これらのエラーを与える
無効な列名'Iden'。
列名「2」が無効です。
列名「5」が無効です。
解決策はありますか?
ありがとう