| 1 | <?php declare(strict_types=1); |
||
| 23 | class Driver extends AbstractDriver { |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Set the backtick as the MySQL escape character |
||
| 27 | * |
||
| 28 | * @var string |
||
| 29 | */ |
||
| 30 | protected $escapeCharOpen = '`'; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Set the backtick as the MySQL escape character |
||
| 34 | * |
||
| 35 | * @var string |
||
| 36 | */ |
||
| 37 | protected $escapeCharClose = '`'; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Connect to MySQL Database |
||
| 41 | * |
||
| 42 | * @codeCoverageIgnore |
||
| 43 | * @param string $dsn |
||
| 44 | * @param string $username |
||
| 45 | * @param string $password |
||
| 46 | * @param array $options |
||
| 47 | */ |
||
| 48 | public function __construct(string $dsn, string $username=NULL, string $password=NULL, array $options=[]) |
||
| 65 | } |