Android Question HTTP Server problem with Android 2.3.4

javiman6969

Member
Licensed User
Longtime User
Hello,

I have a problem with a device (Handheld) with version 2.3.4 of Android.
I am using the HTTP library Serrver and I'm seeing an error when I run a 'job' as follows:

B4X:
    Dim cURL As String  
    Dim cParam As String
    Dim jobOperacion As HttpJob
  
    cURL = "http://" & cHost & "/execquery.html"  
    cParam ="select * from orders where IDOrder = " & nIDOrder & " order by IDOrder"
          
    jobOperacion.Initialize("jobRecOrder-" & nIDOrder & "-" & cHost, Me)  
    jobOperacion.Download2(cURL, Array As String("query",cParam))

In multiple devices it works perfectly, but in this device with this version of Android in floating fields, when the value is zero, I return the string '0.0000000e 00'

Could you help and see if it is a bug in the library or a problem with this version of Android.

Greetings and thanks.
 
Last edited:
Top