Click here to Skip to main content
15,890,512 members
Everything / CouchDB

CouchDB

CouchDB

Great Reads

by Paul D. Sheriff
As more and more users interact with web applications on their mobile devices, it is becoming increasingly important for software developers to allow them to work offline; PouchDB can help.
by Paul D. Sheriff
In this 2nd part of my series on PouchDB, you learn how to perform multi-document inserts and reads.
by Packt Publishing
Best practices in Kubernetes
by Paul D. Sheriff
In this article, the 3rd in a multi-part series, you are going to learn how to query data within a PouchDB database.

Latest Articles

by Packt Publishing
Best practices in Kubernetes
by Paul D. Sheriff
In this article, the 3rd in a multi-part series, you are going to learn how to query data within a PouchDB database.
by Paul D. Sheriff
In this 2nd part of my series on PouchDB, you learn how to perform multi-document inserts and reads.
by Paul D. Sheriff
As more and more users interact with web applications on their mobile devices, it is becoming increasingly important for software developers to allow them to work offline; PouchDB can help.

All Articles

Sort by Score

CouchDB 

15 Jan 2019 by Paul D. Sheriff
As more and more users interact with web applications on their mobile devices, it is becoming increasingly important for software developers to allow them to work offline; PouchDB can help.
20 Jan 2019 by Paul D. Sheriff
In this 2nd part of my series on PouchDB, you learn how to perform multi-document inserts and reads.
3 Dec 2019 by Packt Publishing
Best practices in Kubernetes
15 Dec 2015 by CHill60
This is a Quick Answers forum and it sounds like you need a tutorial.Couchbase has a full set of documentation[^] which includes First App walk through and a Developer forum. The above link should be your starting point. Do come back if you hit a specific problem and we will try to help
21 Jan 2019 by Paul D. Sheriff
In this article, the 3rd in a multi-part series, you are going to learn how to query data within a PouchDB database.
24 Aug 2015 by Mehdi Gholam
Learn to use search engines and always start at the products home page : https://wiki.apache.org/couchdb/Getting_started_with_C%23[^]
24 Aug 2015 by Sergey Alexandrovich Kryukov
You can use the following open-source libraries: https://wiki.apache.org/couchdb/Getting_started_with_C%23[^].See also:https://couchdbnet.codeplex.com[^],http://code.google.com/p/relax-net[^].—SA
11 Nov 2015 by Member 11821466
am aware that C# Entity Framework will allow us to work with MySQL. But is it possible to connect any other like Couch DB in the place of MySQL?
11 Nov 2015 by Abhinav S
TryUsing MyCouch to store ASP.Net identity data in CouchDb or in the cloud using Cloudant [^]CouchDB Many To Many Joins[^]These links should help you get started.
25 Jun 2016 by nika2008
hii am trying to understand how work MVCCmy main problems is what happens when 2 users trying to change same dates in same timeswhich of them will be approved from user 1 or user 2?What I have...
28 Feb 2018 by Member 13702159
Hi, could you please help me? I create a new user in couchDB this way: curl -X PUT MY_URL/_users/org.couchdb.user:userName -H "Accept: application/json" \ -H "Content-Type: application/json" \ -d '{"name": "userName", "password": "pass", "roles": [], "type": "user"}' This method creates two...
16 Apr 2014 by Future Processing
During one of our last projects we had a small 2-year adventure with Apache CouchDB NoSQL database. Here, I’m going to briefly present its strong points as well as drawbacks. Background Why using yet another NoSQL? CouchDB was chosen based on requirements and assumptions in the project.
15 Dec 2015 by ravithejag
Hi,I am new to Couchbase Server c#.Net and i need help in learning it.I have already installed the setup file.I have some queries please help me to solve this1.Able to create the Bucket in http://localhost:8091/index.html but want to know how to create the tables in it.2.How to...
24 Aug 2015 by Member 11821466
Hi, I have just started using CouchDB and I'm not aware of how to connect it with c# application. All i need to do is to connect with couchDB and create a document in the same. Can anybody help me with the same.Thanks
15 Dec 2015 by ravithejag
Forgot to create primary index on the tableCREATE PRIMARY INDEX `Employee-index` ON `Employee` USING GSI; var query =new QueryRequest("SELECT * FROM `Employee`"); var data = ClusterHelper .GetBucket(CouchbaseConfigHelper.Instance.Bucket) ...