JFactory/getDbo
From Joomla! Documentation
< API16:JFactory
The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.
Description[edit]
Get a database object
<! removed transcluded page call, red link never existed >
Syntax[edit]
static getDbo()
Returns[edit]
object
Defined in[edit]
libraries/joomla/factory.php
Importing[edit]
jimport( 'joomla.factory' );
Source Body[edit]
public static function getDbo()
{
if (!is_object(self::$database))
{
//get the debug configuration setting
$conf = &self::getConfig();
$debug = $conf->getValue('config.debug');
self::$database = self::_createDbo();
self::$database->debug($debug);
}
return self::$database;
}
<! removed transcluded page call, red link never existed >
Examples[edit]
Code Examples[edit]