15 lines
278 B
PHP
Executable File
15 lines
278 B
PHP
Executable File
<?php
|
|
|
|
use BBOrm\Connections as Connections;
|
|
|
|
global $DB;
|
|
|
|
$DB = Connection::open([
|
|
'driver' => 'pgsql',
|
|
'host' => 'localhost',
|
|
'prefix' => '_urfat',
|
|
'name' => 'urfat',
|
|
'user' => 'urfat',
|
|
'pass' => 'urfat']);
|
|
|
|
Connections::add_connection($DB, "default"); |