From 554641c2b7747cf668b1920ec347cb4953f06864 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Wed, 30 Jan 2019 08:53:30 +0100 Subject: [PATCH] Updated the value of path option to match the official recipe --- Resources/doc/configuration.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Resources/doc/configuration.rst b/Resources/doc/configuration.rst index d93576080..7be62e679 100644 --- a/Resources/doc/configuration.rst +++ b/Resources/doc/configuration.rst @@ -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 @@ -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" - memory="true" + path="%kernel.project_dir%/var/data.db" + memory="true" unix-socket="/tmp/mysql.sock" persistent="true" multiple-active-result-sets="true"