I'm trying to get a list from a table using :
The bxdo field is a "DOUBLE" var type.
Even if SqltStr is "SELECT * FROM pedidos WHERE bxdo=45.1 ORDER BY idnuvem" the list returns allways as empty ....
What am I doing wrong?
Thanks for help.....
B4X:
Dim DBxdoKey As Double=bxdokey
SqlStr="SELECT * FROM pedidos WHERE bxdo=" & DBxdoKey & " ORDER BY idnuvem"
' SqlStr = SELECT * FROM pedidos WHERE bxdo=45.1 ORDER BY idnuvem
List=DBUtils.ExecuteMemoryTable(Starter.SQL3, SqlStr , Null, 0)
The bxdo field is a "DOUBLE" var type.
Even if SqltStr is "SELECT * FROM pedidos WHERE bxdo=45.1 ORDER BY idnuvem" the list returns allways as empty ....
What am I doing wrong?
Thanks for help.....