I am building a xamarin application and I am using couchbase lite as offline database .
How can I view the data saved in couchbase lite ? and where is it stored ?
I am building a xamarin application and I am using couchbase lite as offline database .
How can I view the data saved in couchbase lite ? and where is it stored ?
"How can I view the data" is an extremely broad question. I think the only reasonable answer is to point you to the Couchbase Lite .NET documentation, for example the section on the Document API. If you read the docs and have more specific questions you can ask those.
The exact location of the data in the filesystem depends on the platform you're running on. You can find it in the DatabaseConfiguration.defaultDirectory
property. But there's almost never a need to use the files directly.
You can also query your data. Here is the API documentation: https://docs.couchbase.com/couchbase-lite/current/csharp.html#query