Is it possible to use the And operator to set two conditions for WhereFields that must be true to update a DBUtils record? I'm sure I'm wording this poorly. Below is an example of what I want to do, but it obviously doesn't work.
B4X:
Dim WhereFields As Map
WhereFields.Initialize
WhereFields.Put("Badge", txtBadge.text) AND WhereFields.Put("Status", "out")
DBUtils.UpdateRecord(sql1, "People", "DateOut", DateTime.Date(DateTime.Now), WhereFields)