Skip to content
Snippets Groups Projects
Commit 18710e71 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #644814 by Stefan Freudenberg: improved SQLite setup documentation

parent a9662c4d
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -67,8 +67,9 @@ ...@@ -67,8 +67,9 @@
* connection should use. This is usually the same as the name of the * connection should use. This is usually the same as the name of the
* database type, such as mysql or sqlite, but not always. The other * database type, such as mysql or sqlite, but not always. The other
* properties will vary depending on the driver. For SQLite, you must * properties will vary depending on the driver. For SQLite, you must
* specify a database. For most other drivers, you must specify a username, * specify a database file name in a directory that is writable by the
* password, host, and database name. * webserver. For most other drivers, you must specify a
* username, password, host, and database name.
* *
* Some database engines support transactions. In order to enable * Some database engines support transactions. In order to enable
* transaction support for a given database, set the 'transactions' key * transaction support for a given database, set the 'transactions' key
...@@ -147,7 +148,7 @@ ...@@ -147,7 +148,7 @@
* ); * );
* $databases['default']['default'] = array( * $databases['default']['default'] = array(
* 'driver' => 'sqlite', * 'driver' => 'sqlite',
* 'database' => 'databasefilename', * 'database' => '/path/to/databasefilename',
* ); * );
*/ */
$databases = array(); $databases = array();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment