thank you for your replies i need to know one more thing i am still confuse 
that in what format the document data is stored for example

// create an empty document
com.couchbase.lite.Document document = database.createDocument();

// create an object that contains data for a document
Map<String, Object> docContent = new HashMap<String, Object>();
docContent.put("message", "Hello Couchbase Lite 1");
docContent.put("name", "raheel");
docContent.put("lastUpdated", this.date());

// Put the properties of Document
   try {
document.putProperties(properties);
} catch (CouchbaseLiteException e) {
e.printStackTrace();
}

i need to know how the data looks after storing in the document .

On Wednesday, September 24, 2014 4:57:12 PM UTC+5, Raheel Mateen wrote:
>
> I follow the following to start the couch db on android
>
> http://docs.couchbase.com/couchbase-lite/cbl-android/cbl-android-1.0b2/#developing-apps
>
> but i actually not understand how to query in couch db for example if i 
> make a document in a db so how should i access that document with the help 
> of query.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Couchbase Mobile" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/mobile-couchbase/12f4b494-f9e7-442a-8c0c-d921155032e0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to