| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?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");
- */
|