Possible Duplicate:
Anyone know of a good PHP ORM that DOES NOT use PDO?
I have been using RedBeanPHP for my ORM for a number of projects, but the webhost I’m currently working with does not support PDO. Since PDO is required for RedBeanPHP, I cannot use it.
Is there a PHP ORM for MySQL that does not make use of PDO?
I agree the real answer is you need to move hosting providers. If they don’t offer a php build with pdo enabled, I can only image what other issues they have.
The answer you’re looking for however will vary based on what type of DB libraries you are allowed… mysql, mysqli, mdb2, adodb, etc…
Most likely, you’ll need to find an older version of an ORM, back in the day when they allowed you to specify if you wanted to use mysqli or pdo.
However, until we know what you have, no one can answer your question fully.
Run
php -mon the command line and paste the result into the question so we can see what options you have.