Вопрос

I'm currently using the ezsql library. Now I want to learn another method of interacting to a mysql database using php. What extension should I use if I'm connecting to a database which is used for different transactions. Should I use pdo or mysqli or some other extension that you can recommend?

Это было полезно?

Решение

mysqli and PDO both support transactions directly, and the old mysql_* functions can manually trigger a transaction by sending a "BEGIN TRANSACTION" query, and "COMMIT" or "ROLLBACK" queries when you're done.

I'd personally go for PDO, but that's just personal preference. Mysqli should be fine also.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top