You are working on a PHP application that needs to support multiple database systems, including MySQL and SQLite. Which database access method in PHP would be best suited for this purpose?

  • mysqli
  • PDO (PHP Data Objects)
  • mysql
  • sqlsrv (SQL Server Driver)
PDO (PHP Data Objects) is the most suitable method for supporting multiple database systems. It's database-agnostic, allowing you to switch between MySQL and SQLite seamlessly.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *