运行时错误3061 Microsoft访问

时间:2014-12-26 12:55:36

标签: ms-access access-vba

我在Microsoft访问时遇到问题。当我尝试将该值与子表单中的所有值进行比较时,它始终显示错误3061:too few parameters expected 1.

这是我的代码:

CurrentDb.Execute "Delete from clubs " & _
                        "  WHERE club_name =" & Me.subClubForms.Form.Recordset.Fields("club_name")

1 个答案:

答案 0 :(得分:0)

我认为club_name是一个TEXT字段,然后你必须按字符串过滤:

"  WHERE club_name ='" & Me.subClubForms.Form.Recordset.Fields("club_name").Value & "'"