I want to get data, number of records, from a remote mysql database and populate a B4XTable with it. The problem I'm having is B4XTable.SetData() expects a list of arrays while
httpjob returns a list of maps.
Is there an easy way to convert a list of maps to a list of arrays?
httpjob returns a list of maps.
B4X:
Dim parser As JSONParser
parser.Initialize(j.GetString)
Dim root As List = parser.NextArray
Is there an easy way to convert a list of maps to a list of arrays?