Database guide
The Database module provides your Cherrycake application with a standardized interface to connect to database servers like MySQL and MariaDB.
Last updated
Was this helpful?
The Database module provides your Cherrycake application with a standardized interface to connect to database servers like MySQL and MariaDB.
Last updated
Was this helpful?
To connect to database servers you must configure a database provider. Just like with the module, you can configure multiple providers to connect to multiple databases at the same time.
Cherrycake is currently only compatible with MySQL and MariaDB servers.
Database providers are configured in the file Database.config.php
.For example, if you want to connect to a MySQL database server, your Cache configuration file would look like this:
Note we called our database provider
main
Just like Cache, some other modules use Database for many purposes, for example: The module uses a database connection to store information about sessions.
That's why in the boilerplate you'll find the /install
directory containing some SQL scripts to create the tables some this modules need.