diff --git a/README b/README index e69de29..92826eb 100644 --- a/README +++ b/README @@ -0,0 +1,27 @@ +# config/database.php + +return array +( + 'default' => array( + 'type' => 'mssql', + 'connection' => array( + /** + * The following options are available for PDO: + * + * string dsn + * string username + * string password + * boolean persistent + * string identifier + */ + 'dsn' => 'dblib:host=hostname;dbname=database', + 'username' => 'test', + 'password' => 'test', + 'persistent' => FALSE, + ), + 'table_prefix' => '', + 'charset' => FALSE, + 'caching' => FALSE, + 'profiling' => TRUE, + ), +);