Thank you Erel!
Dim WhereFields As Map
WhereFields.Initialize
WhereFields.Put("First", edtFirstOut.Text)
WhereFields.Put("Last", edtLastOut.Text)
WhereFields.Put("Rank", edtRankOut.Text)
DBUtils.UpdateRecord(SQL, "Soldiers", "TimeOut", DateTime.Time(DateTime.Now), WhereFields)
The above code worked for updating a single record. Can I update all records the same way? I thought I read in one of the posts that UpgradeRecord could not doe multiple records.