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.
Loading...
Related Quiz
- What are some commonly used output control functions in PHP?
- You have a PHP script and you need to create an object from a class. How would you do this?
- Which of the following functions in PHP can be used to check the type of a number?
- What is the actually used PHP version?
- Imagine you're building a registration system and need to ensure that two users don't register at the exact same time with the same username. Which feature of PDO would be useful to handle this situation?