Edit Method Example

此博客给出一个数据库记录编辑替换的示例。通过Edit方法,用指定名称替换当前数据。代码中获取用户输入的姓名,若输入有效则更新记录,还展示新旧数据,并在演示结束后恢复原始数据,若输入无效则给出提示。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

'This example uses the Edit method to replace the current data with the 'specified name. The EditName procedure is required for this procedure to run.

Sub EditX()

 Dim dbsNorthwind As Database
 Dim rstEmployees As Recordset
 Dim strOldFirst As String
 Dim strOldLast As String
 Dim strFirstName As String
 Dim strLastName As String

 Set dbsNorthwind = OpenDatabase("Northwind.mdb")
 Set rstEmployees = _
  dbsNorthwind.OpenRecordset("Employees", _
  dbOpenDynaset)

 ' Store original data.
 strOldFirst = rstEmployees!FirstName
 strOldLast = rstEmployees!LastName

 ' Get new data for record.

strFirstName = Trim(InputBox( _
   "Enter first name:"))
 strLastName = Trim(InputBox( _
   "Enter last name:"))

 ' Proceed if the user entered something for both fields.
 If strFirstName <> "" and strLastName <> "" Then
  ' Update record with new data.
  EditName rstEmployees, strFirstName, strLastName

  With rstEmployees
   ' Show old and new data.
   Debug.Print "Old data: " & strOldFirst & _
    " " & strOldLast
   Debug.Print "New data: " & !FirstName & _

" " & !LastName
   ' Restore original data because this is a
   ' demonstration.
   .Edit
   !FirstName = strOldFirst
   !LastName = strOldLast
   .Update
  End With

 Else
  Debug.Print _
   "You must input a string for first and last name!"
 End If

 rstEmployees.Close
 dbsNorthwind.Close

End Sub

Sub EditName(rstTemp As Recordset, _
 strFirst As String, strLast As String)

 ' Make changes to record and set the bookmark to keep

' the same record current.
 With rstTemp
  .Edit
  !FirstName = strFirst
  !LastName = strLast
  .Update
  .Bookmark = .LastModified
 End With

End Sub

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值