Update Recordset : Recordset Update « Access « VBA / Excel / Access / Word






Update Recordset

 
Sub IncreaseEstimate()
    Dim rst As ADODB.Recordset
    Set rst = New ADODB.Recordset
    Dim strSQL As String
    Dim lngUpdated As Long

    rst.ActiveConnection = CurrentProject.Connection
    rst.CursorType = adOpenDynamic
    rst.LockType = adLockOptimistic
    rst.Open ("Select * from Products")

    strSQL = "UnitPrice < 30000"
    lngUpdated = 0

    rst.Find strSQL

    Do Until rst.EOF
        lngUpdated = lngUpdated + 1
        rst("UnitPrice") = rst("UnitPrice") * 1.1
        rst.Update
        rst.Find strSQL, 1, adSearchForward
    Loop

    'Print how many rows are updated
    Debug.Print lngUpdated & " Records Updated"

    rst.Close
    Set rst = Nothing
End Sub

 








Related examples in the same category

1.Modifying One Record at a Time
2.Performing Batch Updates