Created
February 10, 2012 09:18
-
-
Save hiscaler/1787980 to your computer and use it in GitHub Desktop.
Yii 数据库连接
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SQLite: sqlite:/path/to/dbfile | |
MySQL: mysql:host=localhost;dbname=testdb | |
PostgreSQL: pgsql:host=localhost;port=5432;dbname=testdb | |
SQL Server: mssql:host=localhost;dbname=testdb | |
Oracle: oci:dbname=//localhost:1521/testdb | |
'emulatePrepare' => true, | |
'username' => 'username', | |
'password' => 'password', | |
'charset' => 'utf8', | |
'tablePrefix' => 'table prefix', | |
'schemaCachingDuration' => 0, | |
'enableParamLogging' => true, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment