Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要为重新查询命令设置参数,但我找不到正确的语法。
tbTreinamentosConc.Requery Profissional = prof
tbTreinamentosConc 指的是 Trn_Done 表,其中包含 Profissional 列,而 prof 是我在 Trn_Done 表中搜索时要使用的参数,位于 Profissional 字段中。
让它工作的正确方法是什么?
提前致谢!
重新查询只会更新给定对象中的信息,您不能将参数传递给它。但是,您可以编写一条 SQL 语句来查询特定的内容...
将 strSQL 暗淡为字符串 strSQL = "SELECT * " & _ "FROM tbTreinamentosConc " "WHERE Professional ='" & txtInput & ";" DoCmd.RunSQL strSQL
将 strSQL 暗淡为字符串
strSQL = "SELECT * " & _ "FROM tbTreinamentosConc " "WHERE Professional ='" & txtInput & ";"
DoCmd.RunSQL strSQL
txtInput 将是您字段上的一个文本框,您可以在其中输入“prof”参数;这应该有效。