Hello
I am running dbutils.executemap to read BD data and gives me error
Thanks
I am running dbutils.executemap to read BD data and gives me error
B4X:
QueryPM = "SELECT * FROM " & DBTableName & " WHERE ID = 3"
Dim QueryPMMap As Map
QueryPMMap.Initialize
QueryPMMap = DBUtils.ExecuteMap(SQL1, QueryPM, Null)
If QueryPMMap = Null Then
lblspSelectPrimer.Text = "N/A"
Else
lblspSelectPrimer.Text = QueryPMMap.Get("primerMedicament")
End If
Thanks