开发者

php framework for querying data from remote db [closed]

开发者 https://www.devze.com 2023-04-13 08:40 出处:网络
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
开发者_开发百科

Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.

Closed 9 years ago.

Improve this question

I am building an web application for monitoring data in our database which is on a remote db .

it involves generating complex queries based on user selection .

which php framework is best suited for this type of application ?


As for my experience, for working with databases I prefer no framework at all, just pure SQL. Especially if you need to build flexible queries, the added value of the framework will be hugely shaded off by added bullshit of it... Not everyone will agree I now, the portability etc. etc., but if you need flexibility and not need so much database portability then just go without framework.


It depends,

if you want to learn new, use new framework.

If you have a short deadline, use a framework you know better.


Frameworks typically are not that good for complex queries since they most often have their own ORM - or at least implement an existing ORM framework. When constructing complex queries in such frameworks the end result is poor performance due to the nature of practically all ORMs. If you are generally writing a reporting application then I would recommend at least NOT using any ORM for this and crafting the queries yourself. In that regard, then, you are free to choose any framework that makes it easy to construct a site and simple write your own queries to power the data behind the pages.


You don't need any framework for executing queries. Instead you need query optimisation for better performance..

However, if you are interested in MVC Framework that deals with ORM, then there are few well known MVC frameworks that you may consider. Some of them are:

  • Zend
  • CodeIgniter
  • CakePHP
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号