1 | <?php |
||
23 | class MicrosoftSQLServerDatabaseConnector extends AbstractDatabaseConnector { |
||
24 | |||
25 | /** |
||
26 | * Microsoft SQL Server DSN. |
||
27 | * |
||
28 | * @var string |
||
29 | */ |
||
30 | const DEFAULT_DSN = "sqlsrv:server=%HOST%,%PORT%;database=%DATABASE%;"; |
||
31 | |||
32 | /** |
||
33 | * Constructor. |
||
34 | * |
||
35 | * @param Authenticator $authenticator The authenticator. |
||
36 | * @param string $database The database. |
||
37 | */ |
||
38 | public function __construct(Authenticator $authenticator, $database) { |
||
47 | |||
48 | /** |
||
49 | * {@inheritdoc} |
||
50 | */ |
||
51 | protected function connect() { |
||
60 | } |
||
61 |