Skip to content

Commit

Permalink
README
Browse files Browse the repository at this point in the history
  • Loading branch information
xrado committed Jun 11, 2010
1 parent b5053ae commit 458ead6
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions 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,
),
);

0 comments on commit 458ead6

Please sign in to comment.