Which library (or libraries) should I use if I want to access a remote DB as well as a remote server?
My goal:
- Connect to remote DB to execute MSSQL queries:
This can be done with
jRDC2
- B4A app sends data and commands to server (windows server) and the server process data based on commands
For example, B4A sends an image file or base64 encoded text of the image to the server, the server will store this image or decode base64 into image file and store in a folder, NOT a DB.
Currently, I am using a PHP server to receive json response from the B4A app and process the information with PHP.
It works fine but I would like to skip PHP if possible and do something like with jRDC2