Hello,
In b4a i can successfuly use m.get("age") ( where age is a double in mysql database)
but same ode in b4i returns (null) with this code:
How can i fix it ?
TY
In b4a i can successfuly use m.get("age") ( where age is a double in mysql database)
but same ode in b4i returns (null) with this code:
B4X:
Dim listfleet As List
listfleet = parser.nextobject 'returns a list with maps
For i = 0 To listfleet.Size - 1
Dim m As Map
m = listfleet.get(i)
Dim ilksatir,ikisatir As double
ilksatir=m.Get("age")
ikisatir=m.Get("available")
TY