<?php
/**
 * Data Source Name
 *
 * [MySQL] see http://www.php.net/manual/en/ref.pdo-mysql.connection.php
 *  driver      : mysql
 *  host        : The hostname on which the database server resides.
 *  port        : The port number where the database server is listening.
 *  dbname      : The name of the database.
 *  user        : The name of the user for the connection.
 *  password    : The password of the user for the connection.
 *  unix_socket : The MySQL Unix socket (shouldn't be used with host or port).
 *  charset     : The character set.
 *
 * [PostgreSQL] see http://www.php.net/manual/en/ref.pdo-pgsql.php
 *  driver      : pgsql
 *  host        : The hostname on which the database server resides.
 *  port        : The port number where the database server is listening.
 *  dbname      : The name of the database.
 *  user        : The name of the user for the connection.
 *  password    : The password of the user for the connection.
 *
 * [SQLite] see http://www.php.net/manual/en/ref.pdo-sqlite.php
 *  driver      : sqlite
 *  host        : The absolute path or :memory:
 *
 * <Example>
 * define("DSN", "driver=mysql;unix_socket=/tmp/mysql.sock;");
 * define("DSN", "driver=pgsql;host=192.168.0.10;port=5432;user=adelie;password=framework;");
 * define("DSN", "driver=sqlite;host=/use/lib/sqlite/adelie.sqlite;");
 */

