MyCouch is a C# library for CouchDB
Questions tagged [mycouch]
7 questions
1
vote
1 answer
Handling conflicts in CouchDB
Say I have a doc with two properties, "Start" and "End." One revision may have a time for Start and null for End, and vice versa. Rather than choosing a single revision as the winner, I want the final doc to contain the Start time from the revision…

devthorne
- 197
- 13
1
vote
0 answers
CouchDB - MyCouch fieldname is wrong after Transmitting
I have a "little" problem with my program here. I am using MyCouch(C# Lib for CouchDB).
I am transmitting a Record(see below) to a local DB. Everything works fine, but the first letter from fieldnames gets lowered all time and messes up the whole…

Markus Friedl
- 11
- 3
0
votes
0 answers
Get changes from couchDB database using MyCouch
I am trying to get the changes that have occurred in a couchDB database since the last time the code was executed. To do so, I have taken the following code from MYCouch library documentation. However, nothing is being printed and I am not sure why.…
user20370754
0
votes
1 answer
Update functions called from MyCouch Extension
I'm trying to call update functions from MyCouch. The documentation of Mycouch reports only an outdated example with Post method on _design documents.
But how to consume an Update function
{
"_id": "_design/artists",
"language": "javascript",
…

Claudio Ferraro
- 4,551
- 6
- 43
- 78
0
votes
0 answers
Get database name changes by MyCouch
I need the database names and their changes in my app.
This is my code:
var cancellation = new CancellationTokenSource().Token;
var cnInfo = MyCouch.DbConnectionInfo(serverUrl, "_all_dbs");
cnInfo.BasicAuth = authString;
cnInfo.Timeout =…

Mohsen
- 4,000
- 8
- 42
- 73
0
votes
1 answer
Posting multiple documents to CouchDB using myCouch
I'm migrating an SQL database to couchDB. I'm having problem when I post multiple documents, say around 8K doc ids. Code below:
MyClass cl = new MyClass();
foreach (DataRow row in dteqEvent.Rows)
{
NewSnDocument pn = new NewSnDocument();
…

Marcus Aurelius
- 99
- 1
- 6
0
votes
1 answer
How to connect to Smileupps Couchdb with MyCouch and C#?
I may be wrong by the way I'm going about this, but I'm trying to connect to an online database that I'm hosting on Smileupps. I'm using CouchDB, and in my program I'm using MyCouch to try to communicate with the DB. Am I mistaken in doing this? How…
user5602140