I am comparing my old local.xml file with a new one (both run same version but one store was upgraded since 2010) and my old one is missing some attributes, should I add them? Is there any advantage by doing so?
<initStatements><![CDATA[SET NAMES utf8]]></initStatements>
<model><![CDATA[mysql4]]></model>
<type><![CDATA[pdo_mysql]]></type>
<pdoType><![CDATA[]]></pdoType>
Old local.xml
<host>localhost</host>
<username><![CDATA[yyy]]></username>
<password><![CDATA[yyyy]]></password>
<dbname><![CDATA[yyy]]></dbname>
<active>1</active>
New XML
<host><![CDATA[localhost]]></host>
<username><![CDATA[ffff]]></username>
<password><![CDATA[ffff]]></password>
<dbname><![CDATA[fff]]></dbname>
<initStatements><![CDATA[SET NAMES utf8]]></initStatements>
<model><![CDATA[mysql4]]></model>
<type><![CDATA[pdo_mysql]]></type>
<pdoType><![CDATA[]]></pdoType>
<active>1</active>