Php orm powerful enough?

I translated the application from MySQL to MSSQL with instructions written in db specific SQL format. Some of the statements include isnull(), ifnull()and concat(), which currently need to be manually rewritten in MSSQL syntax.

To improve code portability, I mean ORM alternatives that can solve the above, still at a speed (I don't want ORM to do a post-result set post process).

Target Databases:

  • MySQL
  • MSSQL
  • PostgreSQL

Appreciate any hints or events in this matter.

+5
source share
2 answers

I think one of the best ORMs is Doctrine 2.

See the project website http://doctrine-project.org/

+1

All Articles