====== hasUTF ======
{#JAPI Joomla.Framework Database JDatabase::hasUTF #}
Determines whether or not the database has UTF support. Returns true if the database supports UTF, false otherwise.
===== Syntax =====
boolean hasUTF ()
===== Examples =====
$database =& JFactory::getDBO();
echo 'The database ' . ($database->getVersion() ? 'has' : 'does not have') . ' UTF support.';
might produce:
The database has UTF support.
----
~~DISCUSSION~~