什么是使用c#,couchdb和LoveSeat的正确的hello world程序

时间:2011-04-19 09:45:50

标签: c# nosql couchdb loveseat

我正在尝试在一个couchdb数据库(总新手)的c#中存储一个简单的hello世界。

我正在使用LoveSeat(但如果它有帮助,可以随意推荐另一个客户端)并创建了这个简单的代码:

static void Main(string[] args)
{
    var cl = new CouchClient("myserver", 5984, null, null);

    var db = cl.GetDatabase("mydb");

    var newDoc = db.CreateDocument(@"{
""Test"":""ValueTest""
}"
    );

    var newDoc2 = db.SaveDocument(newDoc);
}

实际创建了文档:

{
   "_id": "805656b6113d30a5387230a669000bb6",
   "_rev": "1-44c5768a2fa004c6a43899687c283517",
   "Test": "ValueTest"
}

但是当我看到生成的newDoc2时,我看到了:

{
  "error": "file_exists",
  "reason": "The database could not be created, the file already exists."
}

我做错了吗?

THX

2 个答案:

答案 0 :(得分:1)

CreateDocument实际上是将新文档添加到couchdb的内容。之后无需调用SaveDocument。 SaveDocument用于在对文档进行更改后更新文档。我不确定,但似乎在一个尚未更新的文档上调用SaveDocument会给你带来这个错误。如果您对文档进行了更改,然后调用SaveDocument,我希望它能正常工作。

答案 1 :(得分:1)

我读了source code of LoveSeat

public Document SaveDocument(Document document)
{
    if (document.Rev == null)
        return CreateDocument(document);

    var resp = GetRequest(databaseBaseUri + "/" + document.Id + "?rev=" + document.Rev).Put().Form().Data(document).GetResponse();
    var jobj = resp.GetJObject();
    //TODO: Change this so it simply alters the revision on the document past in so that there isn't an additional request.
    return GetDocument(document.Id);
}

所以如果document.Rev==null,SaveDocument与CreatDocument
相同 if document.Rev!=null,SaveDocument实际上是“UpdateDocument”。

您的代码属于前一种情况:document.Rev==null