views:

48

answers:

2

I am searching for DAL or ORM (Only ORM no MVC) Solution in PHP5 that can efficiently access SqlServer. I am new to SqlServer. and I need to code a part of ASP.net website in PHP5. I am currently Using QCodo However its codegenerator is making some problem with ASP's own tables (?? the ASP Guys told me that its for ASP's Membership Management. and these tables are handled internally).So I need some alternative solution that can work in this situation too !!

A: 

Several options, from more to less complex:

  1. Doctrine
  2. Propel
  3. Zend_Db

The three of them support MSSQL through PDO's MSSQL Server extension.

nuqqsa
A: 

phpDataMapper

rtacconi