使用 cakephp 2.3.8 我正在尝试建立与我在另一个数据源中建立的自定义沙发数据库数据源的连接。当通过模型加载时,我试图在站点的其余部分正确加载功能的数据源。我想使用连接管理器来加载这个数据源。这是我到目前为止所拥有的:
数据库.php 文件:
public $queriesCB = array(
'datasource' => 'CouchbaseSource',
'username' => 'queries',
'password' => '',
'bucket' => 'queries',
'prefix' => 'q_',
'expiry' => '1814400', //3 Weeks
'autoConnect' => true,
'database' => NULL ,
'persistent' => false
);
在我的其他数据源中尝试加载 couchbase 数据源
$db = ConnectionManager::getDataSource("queriesCB");
当我调试 $db 我得到这个:
object(CouchbaseSource) {
description => 'Couchbase DataSource'
conObject => object(Couchbase) {
[private] _handle => resource
}
config => array(
'password' => '*****',
'database' => '*****',
'prefix' => '*****',
'datasource' => 'CouchbaseSource',
'username' => 'queries',
'bucket' => 'queries',
'expiry' => '1814400',
'autoConnect' => true,
'persistent' => false
)
prefix => 'q__'
connected => false
cacheSources => true
configKeyName => 'queriesCB'
[protected] _baseConfig => array()
[protected] _descriptions => array()
[protected] _sources => null
[protected] _transactionStarted => false
}
现在,当我尝试调用它时,出现错误:
$db = ConnectionManager::getDataSource("queriesCB");
$db->Get('test');
错误:调用未定义的方法 CouchbaseSource::Get()。
这是一个自定义方法,数据源都是自定义的,可以最好地与 couchbase 一起使用,并且 Get 方法可以正常工作。我如何在 cakephp 中设置错误的连接?
编辑:
我刚刚使用默认数据库配置对 mysql 数据库进行了测试,它也失败了。现在的问题是初始化新数据源的最佳方法是什么?我应该加载附加了该数据源的模型吗?示例:有一个以数据源为 couchbase 的 couchbase 模型吗?
编辑:这是一些数据源
class CouchbaseSource extends DataSource {
public $description = 'Couchbase DataSource';
public $conObject = NULL;
public $config = NULL;
public $prefix = NULL;
public function __construct($config = array()){
// If no configuration is set we use the default
$this->config = $config;
// Setup the cache string that is used when building the string
$this->prefix = (isset($this->config['prefix']) ? $this->config['prefix']."_" : "");
if ($this->config['autoConnect']) {
$this->connect();
}
}
public function connect() {
if ($this->conObject !== true) {
try {
$this->conObject = new Couchbase("127.0.0.1:8091", $this->config['username'], $this->config['password'], $this->config['bucket'], $this->config['persistent']);
} catch (Exception $e) {
throw new MissingConnectionException(array('class' => $e->getMessage()));
}
}
return $this->conObject;
}
public function query($method, $params, $object) {
// If not connected... reconnect!
if(!$this->conObject) {
$this->connect();
}
$apiMethod = $this->__methodToClass($method);
if (!method_exists($this, $apiMethod)) {
throw new NotFoundException("Class '{$apiMethod}' was not found");
} else {
return call_user_func_array(array($this, $apiMethod), $params);
}
}
private function __methodToClass($method) {
return 'CB' . strtolower(Inflector::camelize($method));
}
public function describe(&$Model) {
return $this->description;
}
/////////////////////////////////////////////////
// Query Methods
/////////////////////////////////////////////////
public function CBadd($key = NULL, $value = NULL, $expiry = NULL, $persisto = NULL, $replicateto = NULL) {
return $this->conObject->add($key, $value, $expiry, $persisto, $replicateto);
}