Hi all
How to connect to mysql database in a computer localhost from another device. both of them in the same net work. I tried to access through the IPv4 Address: 192.168.8.4. But I got access denied.
the error I got is:
java.io.FileNotFoundException: /data/user/0/com.ggt.janadmin/cache/1: open failed: ENOENT (No such file or directory)
It seems as if it is trying to read from the mobile itself
How to connect to mysql database in a computer localhost from another device. both of them in the same net work. I tried to access through the IPv4 Address: 192.168.8.4. But I got access denied.
B4X:
Dim job2 As HttpJob
job2.Initialize("", Me)
job2.download("http://192.168.8.4/shops/shopexists.php?dv=" & d)
ProgressDialogShow("Loding..")
Wait For (job2) JobDone(job2 As HttpJob)
ProgressDialogHide
Dim res As String
res = job2.GetString
Log(res)
the error I got is:
java.io.FileNotFoundException: /data/user/0/com.ggt.janadmin/cache/1: open failed: ENOENT (No such file or directory)
It seems as if it is trying to read from the mobile itself
Last edited: