1 | <?php |
||
24 | class MicrosoftAccessDatabaseConnector extends AbstractDatabaseConnector { |
||
25 | |||
26 | /** |
||
27 | * Microsoft Access DSN. |
||
28 | * |
||
29 | * @var string |
||
30 | */ |
||
31 | const DEFAULT_DSN = "odbc:DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=%DBQ%; UID=%UID%; PWD=%PWD%"; |
||
32 | |||
33 | /** |
||
34 | * Constructor. |
||
35 | * |
||
36 | * @param Authenticator $authenticator The authenticator. |
||
37 | * @param string $database The database. |
||
38 | */ |
||
39 | public function __construct(Authenticator $authenticator, $database) { |
||
44 | |||
45 | /** |
||
46 | * {@inheritdoc} |
||
47 | */ |
||
48 | protected function connect() { |
||
61 | } |
||
62 |