I want to develop a Windows Form application for my website which uses a shared database server. The website works nicely and fast. But when I try to access the server from application, it is taking lot of time. I used the same database functions as of my website. So how can I make my application work with approximate same speed as of my website?
Share
use a local cache for your database. There are a lot of ways you can do this. Accessing the database via internet will always be slower that a local cache.