How to create document in couchbase from cbq -


i have created bucket , want insert document. lets suppose have insert data in json format this:

{     "name": "abc",     "password": "abcd123",     "user_id": "abc123" } 

and want insert bucket.

please in advance.

you need use insert statement (available starting couchbase 4.1): http://developer.couchbase.com/documentation/server/4.1/n1ql/n1ql-language-reference/insert.html

insert yourbucketname (key, value) values ("keyofyourobject",    { "name": "abc", "password": "abcd123", "user_id": "abc123"}) returning * ; 

Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -