Computer Science, asked by ritasksingh4692, 10 months ago

What’s the difference between using mysql_ functions and pdo?

Answers

Answered by msasomrat
0

Answer:

MySQL = Popular open source relational database management system

MySQLi – Improved PHP MySQL extension

PDO – PHP extension similar to MySQLi. Provides object oriented way to access database

 

Both MySQLi and PDO have their advantages:

PDO will work on 12 different database systems, where as MySQLi will only work with MySQL databases.

So, if you have to switch your project to use another database, PDO makes the process easy. You only have to change the connection string and a few queries. With MySQLi, you will need to rewrite the entire code – queries included.

Both are object-oriented, but MySQLi also offers a procedural API.

Both support Prepared Statements. Prepared Statements protect from SQL injection, and are very important for web application security.

Example (MySQLi Procedural)

Explanation:

Answered by nivabora539
0

Answer:

Both MySQLi and PDO have their advantages: PDO will work on 12 different database systems, where as MySQLi will only work with MySQL databases. ... Both are object-oriented, but MySQLi also offers a procedural API.

Similar questions