Android Question Ask about this MySQL Library

aeric

Expert
Licensed User
Longtime User
Imagine you store the remote mysql db connection details inside your app which available to public. Maybe facing risk of source code decompiling by hacker or data send with http is not secure. When you change your password in remote MySQL then you need to recompile the app again.

B4X:
mh1.Initialize("ip.mysql.server[:port]","db_name","db_user","db_password")
 
Upvote 0

alfaiz678

Active Member
Licensed User
Imagine you store the remote mysql db connection details inside your app which available to public. Maybe facing risk of source code decompiling by hacker or data send with http is not secure. When you change your password in remote MySQL then you need to recompile the app again.

Yes, thank you very much
I understood well
When using PHP broker method
Contact information is kept safe on the server
In case of changing the password I need to modify the PHP file only

Thank you so much
 
Upvote 0
Top