====== loadResult ======
{#JAPI Joomla.Framework Database JDatabase::loadResult #}
This method loads the first field of the first row returned by the query. The return type depends on the value stored in the database.
===== Syntax =====
mixed loadResult ()
===== Examples =====
$dbo =& JFactory::getDBO();
$query = "SELECT name, bid, clickurl FROM #__banner";
$dbo->setQuery( $query );
$row =& $dbo->loadResult();
print_r( $row );
might produce:
OSM 1
----
~~DISCUSSION~~