Configuring Database
Overview of configuration options for the Nette Database.
If you are not using the whole framework, but only this library, read how to load the configuration.
Single Connection
Configure a single database connection:
Creates the services Nette\Database\Connection
and Nette\Database\Explorer
, which are usually passed
by autowiring or by referring to their name.
Other settings:
The options
key can contain other options that can be found in the PDO driver documentation, such as:
Multiple Connections
In the configuration we can define more database connections by dividing them into named sections:
Autowiring is enabled only for services from the first section. This can be changed using autowired: false
or
autowired: true
.
DI Services
These services are added to the DI container, where ###
represents the connection name:
Name | Type | Description |
---|---|---|
database.###.connection |
Nette\Database\Connection | database connection |
database.###.explorer |
Nette\Database\Explorer | Database Explorer |
If we define only one connection, the service names will be database.default.connection
and
database.default.explorer
. If we define multiple connections as in the example above, the names will correspond to
the sections, i.e. database.main.connection
, database.main.explorer
and then
database.another.connection
and database.another.explorer
.
We pass the non-authenticated services explicitly by referring to their name: