Then let's go with PDO keeping in mind that we should make it easier to add support for other databases as well. It might be just including one class and not the other while the access functions remain the same. This is what MVC is all about after all: The application logic can stay exactly the same if you change databases.
ie my call to $dbAccess->add($userVO) ; would do the same exact thing no matter what the underlying methods/dbms $dbAccess uses.
I'll try to code this week and test it with a PDO DAO (too many freakin' acronyms).
~Hope you guys get the job you interviewed for.~
Dan
ie my call to $dbAccess->add($userVO) ; would do the same exact thing no matter what the underlying methods/dbms $dbAccess uses.
I'll try to code this week and test it with a PDO DAO (too many freakin' acronyms).
~Hope you guys get the job you interviewed for.~
Dan
Comment