From 458ead6842be28328706f1a8971909db8be12143 Mon Sep 17 00:00:00 2001 From: Radovan Lozej Date: Fri, 11 Jun 2010 10:07:53 +0200 Subject: [PATCH] README --- README | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) 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, + ), +);