Skip to content

Instantly share code, notes, and snippets.

@hiscaler
Created February 10, 2012 09:18
Show Gist options
  • Save hiscaler/1787980 to your computer and use it in GitHub Desktop.
Save hiscaler/1787980 to your computer and use it in GitHub Desktop.
Yii 数据库连接
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