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
Post a Comment