Skip to content

Commit

Permalink
Merge pull request #912 from doctrine/path-option
Browse files Browse the repository at this point in the history
Updated the value of path option to match the official recipe
  • Loading branch information
alcaeus committed Feb 3, 2019
2 parents 9fbabc9 + 554641c commit a7f09da
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Resources/doc/configuration.rst
Expand Up @@ -957,8 +957,8 @@ can configure. The following block shows all possible configuration keys:
driver_class: MyNamespace\MyDriverImpl
options:
foo: bar
path: "%kernel.data_dir%/data.sqlite" # SQLite specific
memory: true # SQLite specific
path: "%kernel.project_dir%/var/data.db" # SQLite specific
memory: true # SQLite specific
unix_socket: /tmp/mysql.sock
persistent: true
MultipleActiveResultSets: true # pdo_sqlsrv driver specific
Expand Down Expand Up @@ -1007,8 +1007,8 @@ can configure. The following block shows all possible configuration keys:
password="secret"
driver="pdo_mysql"
driver-class="MyNamespace\MyDriverImpl"
path="%kernel.data_dir%/data.sqlite" <!-- SQLite specific -->
memory="true" <!-- SQLite specific -->
path="%kernel.project_dir%/var/data.db" <!-- SQLite specific -->
memory="true" <!-- SQLite specific -->
unix-socket="/tmp/mysql.sock"
persistent="true"
multiple-active-result-sets="true" <!-- pdo_sqlsrv driver specific -->
Expand Down

0 comments on commit a7f09da

Please sign in to comment.