2
我有初始配置陣列Yii
與數據庫的連接元件:設置隔離級別全球
'components'=>array(
......
'db'=>array(
'connectionString' => 'mysql:host=localhost;dbname=blog',
'emulatePrepare' => true,
'username' => 'root',
'password' => '',
'charset' => 'utf8',
'tablePrefix' => 'tbl_',
),
)
是否有可能以同樣的方式事務隔離級別全局配置爲整個應用程序?
對於數據庫鎖定? –
@eskimo您可以在這裏閱讀有關事務隔離級別的信息:https://en.wikipedia.org/wiki/Isolation_(database_systems) – Andremoniy
也可以在這裏:http://www.yiiframework.com/doc-2.0/guide-db -dao.html#表演-交易 – Andremoniy