Files
framework/config/database_example.php
2019-08-08 20:32:40 +00:00

40 lines
833 B
PHP
Executable File

<?php
use ORM\Connections as Connections;
/*
* PostgreSQL
*
* Connections::addConnection(Connection::open([
'driver' => 'pgsql',
'host' => 'localhost',
'prefix' => '_urfat',
'name' => 'urfat',
'user' => 'urfat',
'pass' => 'urfat'])
, "default");
*/
/*
* Mysql
*
* Connections::addConnection(Connection::open([
'driver' => 'mysql',
'host' => 'localhost',
'prefix' => '_urfat',
'name' => 'urfat',
'user' => 'urfat',
'pass' => 'urfat'])
, "default");
*/
/*
* Sqlite
*
Connections::addConnection(Connection::open([
'driver' => 'sqlite',
'prefix' => '_urfat',
'name' => 'database.db'])
, "default");
*/