PHP code example of aalfiann / lazypdo
1. Go to this page and download the library: Download aalfiann/lazypdo library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
aalfiann / lazypdo example snippets
use aalfiann\LazyPDO;
$dsn = 'mysql:hostname=localhost;dbname=test';
$user = 'test';
$password = 'test';
$pdo = new LazyPDO($dns, $user, $password); // doesn't connect yet
$pdo->query('SELECT * FROM `table` WHERE 1'); // connection is made before executing query