Reputation: 164
I have a c# windows application which uses MySQL database when I work in LAN (Locally with DB Server) it works fine but when I access to database server through the internet the delay on query execution is to much.
Upvotes: 1
Views: 418
Reputation: 10967
Maybe you should use a Web Service or WCF to Query ,than that Service which should be Locally with the DB Server ,should proceed with Token Query from the Internet and get the Select.After this procedure the service should Return to desired client the DataTable .
Upvotes: 1