In couchbase official documentation - http://www.couchbase.com/docs/couchbase-sdk-c-2.0/api-reference-view.html
There is an example of retrieving data from couchbase using views.
const char path[] = "myview?startkey=I,endkey=j";
libcouchbase_make_couch_request(instance, NULL, path, npath
NULL, 0, LIBCOUCHBASE_HTTP_METHOD_GET, 1);
I have downloaded and installed libcouchbase v 2.0.6
It seems there is no function libcouchbase_make_couch_request() or lcb_make_couch_request () available in the library.
Where am I wrong ?
Also it will help a lot if there is an example available somwhere for extracting data which is retrieved after we call the equivalent of libcouchbase_make_couch_request()