40 lines
838 B
PHP
Executable File
40 lines
838 B
PHP
Executable File
<?php
|
|
|
|
use BBOrm\Connections as Connections;
|
|
|
|
/*
|
|
* PostgreSQL
|
|
*
|
|
* Connections::add_connection(Connection::open([
|
|
'driver' => 'pgsql',
|
|
'host' => 'localhost',
|
|
'prefix' => '_urfat',
|
|
'name' => 'urfat',
|
|
'user' => 'urfat',
|
|
'pass' => 'urfat'])
|
|
, "default");
|
|
*/
|
|
|
|
/*
|
|
* Mysql
|
|
*
|
|
* Connections::add_connection(Connection::open([
|
|
'driver' => 'mysql',
|
|
'host' => 'localhost',
|
|
'prefix' => '_urfat',
|
|
'name' => 'urfat',
|
|
'user' => 'urfat',
|
|
'pass' => 'urfat'])
|
|
, "default");
|
|
*/
|
|
|
|
|
|
/*
|
|
* Sqlite
|
|
*
|
|
Connections::add_connection(Connection::open([
|
|
'driver' => 'sqlite',
|
|
'prefix' => '_urfat',
|
|
'name' => 'database.db'])
|
|
, "default");
|
|
*/ |