Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated the value of path option to match the official recipe #912

Merged
merged 1 commit into from Feb 3, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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