在 MS Access 中,创建动态查询后,如何使用记录集中的相应值更新表单上的文本框?

Posted

技术标签:

【中文标题】在 MS Access 中,创建动态查询后,如何使用记录集中的相应值更新表单上的文本框?【英文标题】:in MS Access, after creating a dynamic query, how does one update the textboxes on the form with the corresponding values from the recordset? 【发布时间】:2018-07-31 17:04:18 【问题描述】:

按照此处的示例:https://support.microsoft.com/en-us/help/304302/how-to-build-a-dynamic-query-with-values-from-a-search-form-in-access 我创建了一个搜索按钮,用于搜索表并且似乎提取了正确的 SQL 语句。但是,在此表单上,我有几个文本框(用户 ID、名字、姓氏、部门),它们与数据库中各自的列相关联。如何更新表单 frmSearchUsers 中的这些文本框以反映过滤/查询表的结果?

我原以为 Me.Requery 就足够了,但是文本框保持空白(保存为 txtSQL)

Private Sub cmdSearch_Click()
On Error Resume Next

Dim ctl As Control
Dim sSQL As String
Dim sWhereClause As String

'Initialize the Where Clause variable.
sWhereClause = " Where "

'Start the first part of the select statement.
sSQL = "select * from customers "

'Loop through each control on the form to get its value.
For Each ctl In Me.Controls
    With ctl
        'The only Control you are using is the text box.
        'However, you can add as many types of controls as you want.
        Select Case .ControlType
            Case acTextBox
                .SetFocus
                'This is the function that actually builds
                'the clause.
                If sWhereClause = " Where " Then
                    sWhereClause = sWhereClause & BuildCriteria(.Name, dbtext, .Text)
                Else
                    sWhereClause = sWhereClause & " and " & BuildCriteria(.Name, dbtext, .Text)
                End If
        End Select
    End With
Next ctl

'Set the forms recordsource equal to the new
'select statement.
Me.txtSQL = sSQL & sWhereClause
Me.RecordSource = sSQL & sWhereClause
Me.Requery

结束子

有 4 个文本框,用户 ID、名字、姓氏、部门。

假设我知道表 Customers 中有一个 Jane Doe,但不知道她的 ID 或部门。

在 FirstName 文本框中输入 Jane,在 LastName 文本框中输入 Doe,然后点击搜索似乎会产生适当的 SQL 查询(并已确认这在表上的 SQL 视图中正确过滤): SELECT * FROM Customers Where FirstName=" Jane" 和 LastName="Doe"

但是,其他字段不会更新 - 我在这里做错了什么?是因为我拥有绑定到表格列的文本框的控制源吗?

【问题讨论】:

【参考方案1】:

想出了答案。我必须定义记录集和数据库,然后在按钮更新后引用记录集结果以显示到文本框。准则大致相同:

Private Sub btnSearch_Click()

On Error Resume Next

Dim strSQL As String
Dim ctl As Control
Dim strWhereClause As String
Dim db As Database
Dim rs As DAO.Recordset
Dim textBox As Control
Dim finalSQL As String
Set db = CurrentDb

'Init beginning of SQL select statement
sWhereClause = " Where "
sSQL = "SELECT * FROM Customers "

'Loop through filled in Controls on form to get value
For Each ctl In Me.Controls
    With ctl
        Select Case .ControlType
            Case acTextBox
            .SetFocus
            If sWhereClause = " Where " Then
                sWhereClause = sWhereClause & BuildCriteria(.Name, dbText, .Text)
            Else
                sWhereClause = sWhereClause & " and " & BuildCriteria(.Name, dbText, .Text)
            End If
        End Select
    End With
Next ctl

Me.txtSQL = sSQL & sWhereClause
finalSQL = sSQL & sWhereClause

Set rs = db.OpenRecordset(finalSQL)
If rs.RecordCount > 0 Then
'If Matching Record(s) are found, pull result into appropriate fields
    Me.UserID = rs!UserID
    Me.FirstName = rs!FirstName
    Me.LastName = rs!LastName
    Me.Department = rs!Department

MsgBox "No Users Found Matching Specified Search Criteria.", vbOKCancel, "No Results Found"
End If

【讨论】:

以上是关于在 MS Access 中,创建动态查询后,如何使用记录集中的相应值更新表单上的文本框?的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 VBA 动态 SQL SELECT 语句调用 MS Access 参数查询

MS Access:如何使此文本框根据查询自动填充值?

MS Access 是不是使对象保持打开状态?

MS Access 2010 vba 查询

将 MS Access 查询转换为 MariaDB

如何使用 C# 在 MS-Access 中的查询中使用带有通配符的 LIKE 运算符