This commit is contained in:
2023-08-24 12:06:35 +08:00
parent 0bb294edc5
commit 2c63caaaf8
2 changed files with 19 additions and 15 deletions
+6 -2
View File
@@ -48,7 +48,7 @@ class Connection extends Component
public string $database = ''; public string $database = '';
public int $timeout = 30; public int $connect_timeout = 30;
public int $waite_time = 3; public int $waite_time = 3;
@@ -344,10 +344,14 @@ class Connection extends Component
PDO::ATTR_ORACLE_NULLS => PDO::NULL_NATURAL, PDO::ATTR_ORACLE_NULLS => PDO::NULL_NATURAL,
PDO::ATTR_STRINGIFY_FETCHES => false, PDO::ATTR_STRINGIFY_FETCHES => false,
PDO::ATTR_EMULATE_PREPARES => true, PDO::ATTR_EMULATE_PREPARES => true,
PDO::ATTR_TIMEOUT => $this->timeout, PDO::ATTR_TIMEOUT => $this->connect_timeout,
PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES ' . $this->charset PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES ' . $this->charset
]); ]);
$link = new PDO('mysql:dbname=' . $this->database . ';host=' . $this->cds, $this->username, $this->password, $options); $link = new PDO('mysql:dbname=' . $this->database . ';host=' . $this->cds, $this->username, $this->password, $options);
foreach ($this->attributes as $key => $attribute) {
$link->setAttribute($key, $attribute);
}
return [$link, time()]; return [$link, time()];
} }
+1 -1
View File
@@ -63,7 +63,7 @@ class DatabasesProviders extends Providers
'password' => $database['password'], 'password' => $database['password'],
'tablePrefix' => $database['tablePrefix'], 'tablePrefix' => $database['tablePrefix'],
'database' => $database['database'], 'database' => $database['database'],
'timeout' => $database['timeout'] ?? 10, 'connect_timeout' => $database['connect_timeout'] ?? 10,
'idle_time' => $database['idle_time'] ?? 300, 'idle_time' => $database['idle_time'] ?? 300,
'waite_time' => $database['waite_time'] ?? 3, 'waite_time' => $database['waite_time'] ?? 3,
'pool' => $clientPool, 'pool' => $clientPool,