star
star

Reputation: 164

C# to MY SQL delay query execution

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

Answers (1)

Rosmarine Popcorn
Rosmarine Popcorn

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

Related Questions