请求的存储桶不存在。 Couchbase PHP Laravel

时间:2016-04-11 13:39:27

标签: php database laravel couchdb couchbase

我是Couchbase的新手,我还在研究它。我使用Laravel作为我的后端并使用此包:https://github.com/ytake/Laravel-Couchbase

问题是我不知道在哪里检查我的错误。我有:

The bucket requested does not exist.

我想查询couhbase中的默认数据库_users

我有这个问题:

\DB::connection('couchbase')->table('_users')->where('_id', '_design/_auth')->get();

我在网上搜索,发现该存储桶等同于数据库。我知道MySQL。所以我检查了我的Couchbase的管理页面:

enter image description here

然后在_users

enter image description here

并在第一条记录中:

enter image description here

我的连接字符串:

'couchbase' => [
        'driver' => 'couchbase',
        'host' => '127.0.0.1:5984?detailed_errcodes=1',
        'user' => 'joene',
        'password' => 'CheRambil27',
    ],

我知道我的查询有问题,但我不知道在哪里检查。例如,我在哪里声明我要查询的存储桶?如果我想查询_users存储桶中的所有记录,那么查询是什么?而对于表,哪个应该是我的表名? Cooz我知道_users是数据库名称吗?

0 个答案:

没有答案