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 int $timeout = 30;
public int $connect_timeout = 30;
public int $waite_time = 3;
@@ -344,10 +344,14 @@ class Connection extends Component
PDO::ATTR_ORACLE_NULLS => PDO::NULL_NATURAL,
PDO::ATTR_STRINGIFY_FETCHES => false,
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
]);
$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()];
}