I should develop a online search application which connects to an external database in a different server. This application can be a web application one (running on a Internet browsers basically) or a normal standard window application (with its own GUI). Does one of the two approaches have more benefits of the other? If so, which one?
I should develop a online search application which connects to an external database in
Share
There are advantages and drawbacks with each solution, of course ; here are a couple of thoughts :
In your case, if most of the work is done by the external database, I suppose the web/desktop application would only be a front-end that sends queries and display data in return ?
If so, you probably don’t need much power on the application-side : almost everything will be on the database side, which is necessarily shared amongst users.
In such a case, I would probably go for a web-application : easier to update, works on all platforms, doesn’t require much server-power.
(Disclaimer : I am a web-developper — so might be a bit biased ^^ )