jack797 / bitrix_mysql_connection
bitrix_mysql_connection
dev-main
2020-11-30 09:01 UTC
Requires
- php: >=7.1.0
This package is auto-updated.
Last update: 2024-09-29 06:02:20 UTC
README
连接到MySQL数据库的连接器,补充了Bitrix的连接器,但解决了“2006 MySQL服务器已断开”的错误。
安装
$ composer require jack797/bitrix_mysql_connection
在.settings.php
中,根据需要指定className
和maxAttempts
参数。
<?php [ 'connections' => array ( 'value' => array ( 'default' => array ( 'className' => '\\Jack797\\BitrixMysqlConnection\\MysqliConnection', 'maxAttempts' => 3, //по-умолчанию: 5 (не обязательный параметр) ), ), ), ];