Skip to content

Div PHP ORM 0.2.0

Compare
Choose a tag to compare
@rafageist rafageist released this 19 Sep 02:55
· 2 commits to master since this release

New method for build a PDO instances, orm::buildPDO($config, $connectGlobal);

This example build a PDO instance, and make a global connection:

<?php

use divengine\orm;

$pdo = orm::buildPDO([
    'type' => 'pgsql',
    'host' => 'localhost',
    'port' => 5432,
    'name' => 'mydb',
    'user' => 'me',
    'pass' => 'mysuperpass'
], true);