I am using the following code:
'db'=>array(
'connectionString' => 'mysql:host=localhost;dbname= jini',
'emulatePrepare' => true,
'username' => 'user',
'password' => 'password',
'charset' => 'utf8',
),
This connects to the database, but only if i put a space after the ‘=’ sign. I have several DBs inside my XAMPP and all of them connect with out the space between ‘=’ and database_name. Why for this one particular Database do i need to place a space after the ‘=’ so it will connect and will that still be ok?
Jonny