This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
Abstract Class WordpressSqlDatasource extends Datasource { | |
public $dsParamREDIRECTONEMPTY = 'no'; | |
public function __construct($env=NULL, $process_params=true){ | |
parent::__construct($env, $process_params); | |
$this->_dependencies = array(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @package toolkit | |
*/ | |
/** | |
* The DatabaseException class extends a normal Exception to add in | |
* debugging information when a SQL query fails such as the internal | |
* database error code and message in additional to the usual |