使用cakephp 2.3.8我正在尝试建立与我在另一个数据源中创建的自定义couchbase数据源的连接。当我通过模型加载时,我试图在网站的其余部分正确加载的数据源。我想使用连接管理器来加载这个数据源。这就是我到目前为止所做的:
database.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);
}
答案 0 :(得分:2)
解决方案是直接从couchbasesource调用查询方法。鉴于我设置数据源的方式,与通过模型链接它不同,查询信息不会自动传递。我的用处是简单地使用它。
App::uses('ConnectionManager', 'Model');
$db = ConnectionManager::getDataSource("queriesCB");
debug($db->query('Get', array('test')));