File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1070,17 +1070,19 @@ If you want to create a connection without selecting a database you can omit
1070
1070
the database name::
1071
1071
1072
1072
$dsn = 'mysql://root:password@localhost/';
1073
+ ConnectionManager::setConfig('setup', ['url' => $dsn]);
1073
1074
1074
1075
You can now use your connection object to execute queries that create/modify
1075
1076
databases. For example to create a database::
1076
1077
1078
+ $connection = ConnectionManager::get('setup');
1077
1079
$connection->execute("CREATE DATABASE IF NOT EXISTS my_database");
1078
1080
1079
1081
.. note ::
1080
1082
1081
1083
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.
1084
1086
1085
1087
.. meta ::
1086
1088
:title lang=en: Database Basics
You can’t perform that action at this time.
0 commit comments