While I have some experience developing HTML and DHTML based web applications (mostly using PHP and perl), I have found it to be a pretty slow process to develop an application. I am wondering if there is a development environment/language/IDE I could use to more quickly develop data entry based applications interfacing with a relational database (MySQL, Oracle, etc). I have experience using fourth generation languages to develop non-web applications and one can develop an application to enter and query data from a database relatively quickly. To develop the same application for the web can take way longer to develop. This is mainly due to the slow process for implementing the user interface to look and behave the way one wants. Is there some way to more quickly develop a database based application for the web? Your opinion, experience, and advice is welcomed.
|
feedback
|
closed as not constructive by Kev♦ Sep 3 '11 at 23:48
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.
|
RAD PHP from Embarcadero might fit the bill. There's also ASP.NET, which can be developed under MS Visual Studio. | |||
|
feedback
|
|
I would choose a MVC framework with ORM (object relational mapping) and CRUD (create, read, update, delete) automation, that speeds up your development-process a lot. I work with CFWheels which is inspired by Ruby on Rails and here is an explanation of why a framework can help you. For PHP you have several, CakePHP, CodeIgniter, Symphony, Zend Framework, Akelos ...etc Apart from that there is Ruby on Rails for Ruby, CFWheels for Coldfusion and Django for Python and lots more. Using a framework like those, will make database interactions a lot easier, it will also separate code from the display (interface) code. There are RAD IDE's for making webapplications and I have tried some in the past and they all work fine until you run into their limitations or bugs. Once that happens you spend more time fixing that than you would have written it yourself. A framework is also limiting by following a set of rules but never as restricting. | ||||
|
feedback
|