我使用cloudant客户端将数据库与此代码连接为:
public void setConfig(){
this.client=new CloudantClient(this.username, this.username, this.password);
this.database=this.client.database(this.dbName, true);
}
它在我自己的IBM cloudant数据中运行良好。
我想使用cloudant客户端连接到共享数据。例如,名为“user1”的其他帐户为我拥有完全权限的数据库“user1db”。当我宣布this.dbName="user1/user1db or this.dbName="shared/user1/user1db ";
时。它不起作用。
那么如何将cloudant客户端连接到共享数据库呢。