Skip to content

Commit c85c94d

Browse files
authored
Merge pull request #8007 from cakephp/dereuromark-patch-1
Update database-basics.rst
2 parents 10ce6aa + 3521f90 commit c85c94d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

en/orm/database-basics.rst

+4-2
Original file line numberDiff line numberDiff line change
@@ -1070,17 +1070,19 @@ If you want to create a connection without selecting a database you can omit
10701070
the database name::
10711071

10721072
$dsn = 'mysql://root:password@localhost/';
1073+
ConnectionManager::setConfig('setup', ['url' => $dsn]);
10731074

10741075
You can now use your connection object to execute queries that create/modify
10751076
databases. For example to create a database::
10761077

1078+
$connection = ConnectionManager::get('setup');
10771079
$connection->execute("CREATE DATABASE IF NOT EXISTS my_database");
10781080

10791081
.. note::
10801082

10811083
When creating a database it is a good idea to set the character set and
1082-
collation parameters. If these values are missing, the database will set
1083-
whatever system default values it uses.
1084+
collation parameters (e.g. ``DEFAULT CHARACTER SET utf8mb4 DEFAULT COLLATE utf8mb4_unicode_ci``).
1085+
If these values are missing, the database will set whatever system default values it uses.
10841086

10851087
.. meta::
10861088
:title lang=en: Database Basics

0 commit comments

Comments
 (0)