-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMysql.php
More file actions
57 lines (43 loc) · 1.48 KB
/
Mysql.php
File metadata and controls
57 lines (43 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
namespace ipl\Sql\Adapter;
use ipl\Sql\Config;
use ipl\Sql\Connection;
use Pdo\Mysql as PdoMysql;
class Mysql extends BaseAdapter
{
protected array $quoteCharacter = ['`', '`'];
protected string $escapeCharacter = '``';
public function setClientTimezone(Connection $db): static
{
$db->exec('SET time_zone = ' . $db->quote($this->getTimezoneOffset()));
return $this;
}
public function getOptions(Config $config): array
{
$options = parent::getOptions($config);
if (! empty($config->useSsl)) {
if (! empty($config->sslKey)) {
$options[PdoMysql::ATTR_SSL_KEY] = $config->sslKey;
}
if (! empty($config->sslCert)) {
$options[PdoMysql::ATTR_SSL_CERT] = $config->sslCert;
}
if (! empty($config->sslCa)) {
$options[PdoMysql::ATTR_SSL_CA] = $config->sslCa;
}
if (! empty($config->sslCapath)) {
$options[PdoMysql::ATTR_SSL_CAPATH] = $config->sslCapath;
}
if (! empty($config->sslCipher)) {
$options[PdoMysql::ATTR_SSL_CIPHER] = $config->sslCipher;
}
if (
defined(PdoMysql::class . '::ATTR_SSL_VERIFY_SERVER_CERT')
&& ! empty($config->sslDoNotVerifyServerCert)
) {
$options[PdoMysql::ATTR_SSL_VERIFY_SERVER_CERT] = false;
}
}
return $options;
}
}