. * * @author TechFuze * @copyright Copyright (c) 2013 - 2016, Techfuze. (http://techfuze.net) * @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/) * @license http://opensource.org/licenses/GPL-3.0 GPLv3 License * * @link http://techfuze.net/fuzeworks * @since Version 0.0.1 * * @version Version 1.0.0 */ /** * Oracle Utility Class * * Converted from CodeIgniter. * * @package FuzeWorks * @category Database * @author EllisLab Dev Team * @link https://codeigniter.com/user_guide/database/ * @license http://opensource.org/licenses/MIT MIT License */ class FW_DB_oci8_utility extends FW_DB_utility { /** * List databases statement * * @var string */ protected $_list_databases = 'SELECT username FROM dba_users'; // Schemas are actual usernames /** * Export * * @param array $params Preferences * @return mixed */ protected function _backup($params = array()) { // Currently unsupported return $this->db->display_error('db_unsupported_feature'); } }