add getDriver() which returns the database driver

This commit is contained in:
Uwe Steinmann 2017-02-18 07:37:45 +01:00
parent ded86e7c0e
commit a5e984587d

View File

@ -157,6 +157,15 @@ class SeedDMS_Core_DatabaseAccess {
$this->_debug = false;
} /* }}} */
/**
* Return driver
*
* @return string name of driver as set in constructor
*/
public function getDriver() { /* {{{ */
return $this->_driver;
} /* }}} */
/**
* Connect to database
*