PHP code example of jtrw / dao
1. Go to this page and download the library: Download jtrw/dao 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/ */
jtrw / dao example snippets
$db = new PDO(
$GLOBALS['config']['db']['dsn'],
$GLOBALS['config']['db']['user'],
$GLOBALS['config']['db']['pass']
);
$db->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_ASSOC);
$db->setAttribute(PDO::ATTR_ORACLE_NULLS, PDO::NULL_EMPTY_STRING);
$db->setAttribute(PDO::ATTR_CASE, PDO::CASE_NATURAL);
$res = $db->query('SET NAMES utf8mb4');
if (!$res) {
throw new Exception('Database connection error);
}
$db = DataAccessObject::factory($db);