@@ -27,15 +27,15 @@ The following configuration code shows how you can configure two entity managers
27
27
default_connection : default
28
28
connections :
29
29
default :
30
- driver : ' %database_driver% '
30
+ driver : pdo_mysql
31
31
host : ' %database_host%'
32
32
port : ' %database_port%'
33
33
dbname : ' %database_name%'
34
34
user : ' %database_user%'
35
35
password : ' %database_password%'
36
36
charset : UTF8
37
37
customer :
38
- driver : ' %database_driver2% '
38
+ driver : pdo_mysql
39
39
host : ' %database_host2%'
40
40
port : ' %database_port2%'
41
41
dbname : ' %database_name2%'
@@ -68,7 +68,7 @@ The following configuration code shows how you can configure two entity managers
68
68
<config >
69
69
<dbal default-connection =" default" >
70
70
<connection name =" default"
71
- driver =" %database_driver% "
71
+ driver =" pdo_mysql "
72
72
host =" %database_host%"
73
73
port =" %database_port%"
74
74
dbname =" %database_name%"
@@ -78,7 +78,7 @@ The following configuration code shows how you can configure two entity managers
78
78
/>
79
79
80
80
<connection name =" customer"
81
- driver =" %database_driver2% "
81
+ driver =" pdo_mysql "
82
82
host =" %database_host2%"
83
83
port =" %database_port2%"
84
84
dbname =" %database_name2%"
@@ -108,7 +108,7 @@ The following configuration code shows how you can configure two entity managers
108
108
'default_connection' => 'default',
109
109
'connections' => array(
110
110
'default' => array(
111
- 'driver' => '%database_driver% ',
111
+ 'driver' => 'pdo_mysql ',
112
112
'host' => '%database_host%',
113
113
'port' => '%database_port%',
114
114
'dbname' => '%database_name%',
@@ -117,7 +117,7 @@ The following configuration code shows how you can configure two entity managers
117
117
'charset' => 'UTF8',
118
118
),
119
119
'customer' => array(
120
- 'driver' => '%database_driver2% ',
120
+ 'driver' => 'pdo_mysql ',
121
121
'host' => '%database_host2%',
122
122
'port' => '%database_port2%',
123
123
'dbname' => '%database_name2%',
0 commit comments