0
有誰知道如何將hive數據庫連接到YII框架?對於ODBC連接,YII的文檔提供了以下代碼。但它不起作用。yii與hive數據庫的數據庫連接
array(
......
'components'=>array(
......
'db'=>array(
'class'=>'CDbConnection',
'connectionString'=>'mysql:host=localhost;dbname=testdb',
'username'=>'root',
'password'=>'password',
'emulatePrepare'=>true, // needed by some MySQL installations
),
),
)
我想這也有,但是它不建立 –
你設置好的正確的數據庫連接,用戶名和密碼? – scaisEdge