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