mysql and remote read/write

Associate
Joined
18 Oct 2002
Posts
1,752
Location
Southern England
morning all,

I'm investigation options for some development work I want to do.

Basically I want to use two methods for writing and reading from a remotely hosted MySQL database.

First method is via a vb.net app running on one of my servers. this will create data and write it into the DB.

Second method is via an android app which will pull data from the DB but will also write updates back to the DB on occasion.

So in a nutshell... VB.NET <-> MYSQL <-> android

I don't currently have the option to host the database myself.

am I going to run into a wall here is terms of security issues with the hosting company (yes I've asked, just waiting for a reply from them) and if so is there another way around this??
 
Associate
Joined
10 Nov 2013
Posts
1,808
You want to host a web service which will talk to mysql rather than have your applications talk to the database directly. You can lock-down the web service however you like (ssl, user accounts, etc.). Your applications will call methods on your web service and the web service back-end will do the database stuff and return results back to your apps.
 
Back
Top Bottom