これは、VALUES
で指定された値の数を意味します INSERT
の句 ステートメントは、テーブルの列の総数と等しくありません。選択した列にのみ挿入する場合は、列名を指定する必要があります。
もう1つは、ADO.Net
を使用しているためです。 、SQL Injection
を回避するために常にクエリをパラメータ化 。あなたが今していることは、あなたが敗北しているということです。 sqlCommand
の使用 。
ex
Dim query as String = String.Empty
query &= "INSERT INTO student (colName, colID, colPhone, "
query &= " colBranch, colCourse, coldblFee) "
query &= "VALUES (@colName,@colID, @colPhone, @colBranch,@colCourse, @coldblFee)"
Using conn as New SqlConnection("connectionStringHere")
Using comm As New SqlCommand()
With comm
.Connection = conn
.CommandType = CommandType.Text
.CommandText = query
.Parameters.AddWithValue("@colName", strName)
.Parameters.AddWithValue("@colID", strId)
.Parameters.AddWithValue("@colPhone", strPhone)
.Parameters.AddWithValue("@colBranch", strBranch)
.Parameters.AddWithValue("@colCourse", strCourse)
.Parameters.AddWithValue("@coldblFee", dblFee)
End With
Try
conn.open()
comm.ExecuteNonQuery()
Catch(ex as SqlException)
MessageBox.Show(ex.Message.ToString(), "Error Message")
End Try
End Using
End USing
PS:クエリで指定された列名をテーブルにある元の列に変更してください。