User Tools

Site Tools


mysql:database_api

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
mysql:database_api [2016/10/13 15:52] petermysql:database_api [2020/07/15 09:30] (current) – external edit 127.0.0.1
Line 1: Line 1:
 ====== MySQL - Database API ====== ====== MySQL - Database API ======
 +
 +PHP offers three different APIs to connect to MySQL. 
  
 ===== Choosing an API ===== ===== Choosing an API =====
Line 7: Line 9:
 <code php> <code php>
 <?php <?php
-// mysqli 
-$mysqli = new mysqli("example.com", "user", "password", "database"); 
-$result = $mysqli->query("SELECT 'Hello, dear MySQL user!' AS _message FROM DUAL"); 
-$row = $result->fetch_assoc(); 
-echo htmlentities($row['_message']); 
- 
 // PDO // PDO
 $pdo = new PDO('mysql:host=example.com;dbname=database', 'user', 'password'); $pdo = new PDO('mysql:host=example.com;dbname=database', 'user', 'password');
 $statement = $pdo->query("SELECT 'Hello, dear MySQL user!' AS _message FROM DUAL"); $statement = $pdo->query("SELECT 'Hello, dear MySQL user!' AS _message FROM DUAL");
 $row = $statement->fetch(PDO::FETCH_ASSOC); $row = $statement->fetch(PDO::FETCH_ASSOC);
 +echo htmlentities($row['_message']);
 +
 +// mysqli
 +$mysqli = new mysqli("example.com", "user", "password", "database");
 +$result = $mysqli->query("SELECT 'Hello, dear MySQL user!' AS _message FROM DUAL");
 +$row = $result->fetch_assoc();
 echo htmlentities($row['_message']); echo htmlentities($row['_message']);
  
Line 29: Line 31:
  
 It is recommended to use either the PDO_MySQL or mysqli extensions.  It is not recommended to use the old mysql extension for new development, as it was deprecated in PHP 5.5.0 and was removed in PHP 7.  It is recommended to use either the PDO_MySQL or mysqli extensions.  It is not recommended to use the old mysql extension for new development, as it was deprecated in PHP 5.5.0 and was removed in PHP 7. 
 +
 +PDO has the advantage that you only need to learn one PHP API if you need to work with different DBMS in the future.
 +
 +MySQLi is more powerful and probably more complex to learn. 
  
  
mysql/database_api.1476373975.txt.gz · Last modified: 2020/07/15 09:30 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki